-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.69 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
{
"name": "vulcan-pwa-examples",
"version": "1.0.0",
"private": true,
"scripts": {
"setup": "sh setup.sh",
"start": "NODE_PATH=./ node server/index.js",
"start:production": "NODE_ENV=production npm run start",
"build": "npm run build-css && npm run build-js",
"build:production": "NODE_ENV=production npm run build-css && NODE_ENV=production npm run build-js",
"build-css": "gulp sass",
"build-js": "webpack",
"postinstall": "npm run setup && npm run build:production"
},
"dependencies": {
"autoprefixer": "^6.7.6",
"axios": "^0.14.0",
"babel-core": "^6.9.1",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.13.0",
"body-parser": "^1.17.1",
"classnames": "^2.2.5",
"cssnano": "^3.10.0",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"express": "^4.14.0",
"foundation-sites": "^6.3.1",
"gulp": "^3.9.1",
"gulp-if": "^2.0.2",
"gulp-livereload": "^3.8.1",
"gulp-postcss": "^6.3.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.1",
"halogen": "^0.2.0",
"howler": "^2.0.2",
"i18next": "^3.4.1",
"jquery": "^2.2.4",
"localforage": "^1.5.0",
"lodash": "^4.15.0",
"moment": "^2.17.1",
"prhone-mdb": "^2.0.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.6",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.5",
"react-s-alert": "^1.2.2",
"react-select": "^1.0.0-rc.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"webpack": "^1.13.1"
}
}