-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.48 KB
/
package.json
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
97
98
99
100
101
102
103
104
{
"name": "webflow-react-template",
"version": "0.0.1",
"description": "Webflow React Template",
"main": "index.js",
"repository": "https://github.com/TobiahRex/webflow-react-template.git",
"scripts": {
"analyze-bundle": "NODE_ENV=production babel-node ./tools/analyzeBundle.js",
"deploy": "NODE_ENV=production npm-run-all prebuild build:bundle copy:assets s3:clean s3:deploy cf:invalidate start-prod",
"build:bundle": "babel-node ./tools/build.js",
"cf:invalidate": "babel-node ./tools/cf_invalidate_script.js",
"copy:assets": "npm-run-all copy:error copy:package",
"copy:error": "copyfiles -f './src/containers/404/error/*' ./dist",
"copy:package": "copyfiles 'package.json' ./dist/",
"s3:clean": "aws s3 rm s3://lonesmoke-react --recursive",
"s3:deploy": "aws s3 sync dist/ s3://lonesmoke-react",
"sls-production": "SLS_ENV=production cd ./serverless && serverless deploy",
"sls-development": "SLS_ENV=development cd ./serverless && serverless deploy",
"start": "babel-watch ./server/server.js",
"start-prod": "babel-node ./tools/distServer.js",
"prebuild": "rimraf ./dist && mkdir dist"
},
"author": "Tobiah Rex",
"license": "ISC",
"engines": {
"node": "7.7.3"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-plugin-react-display-name": "^2.0.0",
"babel-plugin-transform-react-jsx-source": "^6.9.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-watch": "^2.0.6",
"body-parser": "^1.17.1",
"cash-mv": "^0.2.0",
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"compression": "^1.6.2",
"copyfiles": "^1.0.0",
"css-loader": "^0.25.0",
"dotenv": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"localforage": "^1.5.0",
"lodash": "^4.17.4",
"node-sass": "^3.10.1",
"npm-run-all": "^3.1.0",
"open": "0.0.5",
"postcss-loader": "^0.13.0",
"progress-bar-webpack-plugin": "^1.9.3",
"prop-types": "^15.5.8",
"ramda": "^0.22.1",
"react-addons-perf": "^15.4.2",
"rimraf": "^2.6.1",
"sass-loader": "^4.0.2",
"seamless-immutable": "^7.1.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"uuid": "^3.0.1",
"webpack": "^2.2.1",
"webpack-bundle-analyzer": "^2.3.1",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2",
"webpack-md5-hash": "^0.0.5"
},
"dependencies": {
"apisauce": "^0.13.0",
"express": "^4.15.3",
"material-ui": "^0.18.3",
"mongoose": "^4.10.5",
"morgan": "^1.8.2",
"path": "^0.12.7",
"react": "^15.5.4",
"react-dom": "^15.3.2",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.0.5",
"react-router": "3.0.5",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-persist": "^4.8.0",
"redux-saga": "^0.15.3",
"reduxsauce": "^0.5.0",
"standard": "^10.0.2"
}
}