-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.16 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "jsonmvc-sandbox",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "NODE_ENV=development gulp test:app",
"start": "NODE_ENV=development gulp start:app",
"start:production": "NODE_ENV=production gulp start:app",
"build": "NODE_ENV=development gulp build:app",
"build:production": "NODE_ENV=production gulp build:app",
"build:schema": "NODE_ENV=development gulp build:schema",
"build:vendor": "NODE_ENV=development gulp build:vendor",
"build:entry": "NODE_ENV=development gulp build:entry",
"processIcons": "./build/svgToPugViews.sh"
},
"author": "",
"license": "MIT",
"dependencies": {
"@fdaciuk/ajax": "^2.3.0",
"@firebase/storage": "^0.2.3",
"@google-cloud/firestore": "^0.14.1",
"ajv": "^6.5.1",
"ajv-errors": "^1.0.0",
"chroma-js": "^1.3.7",
"del": "^3.0.0",
"enquire.js": "^2.1.6",
"firebase-admin": "^5.12.1",
"gulp-watch": "^5.0.0",
"js-search": "^1.4.2",
"json-schema-ref-parser": "^4.0.4",
"jsonmvc-helper-observer": "^0.3.6",
"jsonmvc-helper-stream": "^0.3.6",
"jsonmvc-module-fields": "^0.3.6",
"jsonmvc-module-forms": "^0.3.6",
"jsonmvc-module-time": "^0.3.0",
"jsonmvc-util-changes": "^0.3.6",
"jsonmvc-util-load": "^0.3.6",
"moment": "^2.18.1",
"postcss-import": "^11.0.0",
"purgecss-webpack-plugin": "^0.20.0",
"recursive-readdir": "^2.2.1",
"rimraf": "^2.6.2",
"string-interpolation": "^1.2.2",
"tailwindcss": "github:dumconstantin/tailwindcss#tachyons",
"webpack-bundle-analyzer": "^2.10.0",
"xml-js": "^1.6.4"
},
"devDependencies": {
"@firebase/app": "^0.1.2",
"@firebase/auth": "^0.3.0",
"@firebase/firestore": "^0.3.2",
"autoprefixer": "^7.1.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-pug-html": "^0.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.5",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.5",
"gulp": "^3.9.0",
"gulp-sync": "^0.1.4",
"gulp-util": "^3.0.8",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"i18next": "^10.2.1",
"js-yaml": "^3.10.0",
"json-loader": "^0.5.7",
"json-schema-defaults": "^0.3.0",
"json-schema-resolve-allof": "^1.2.0",
"jsonmvc": "^0.3.28",
"jsonmvc-module-ui": "^0.3.30",
"jsonmvc-pug-view-loader": "^1.0.0",
"jsonmvc-schema": "^0.3.17",
"postcss-color-function": "^4.0.0",
"postcss-loader": "^2.0.6",
"postcss-mixins": "^6.1.0",
"postcss-smart-import": "^0.7.5",
"postcss-strip-inline-comments": "^0.1.5",
"precss": "^3.1.0",
"pug": "^2.0.0-rc.3",
"pug-loader": "git+ssh://git@github.com/dumconstantin/pug-loader.git",
"source-map-loader": "^0.2.1",
"style-loader": "^0.20.1",
"url-loader": "^0.6.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0",
"webpack": "^3.10.0",
"webpack-config": "^7.4.0",
"webpack-dev-server": "^2.7.1",
"yaml-loader": "^0.5.0"
}
}