-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.08 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
{
"name": "jarvis",
"scripts": {
"start": "NODE_ENV=development webpack --config webpack.config.development.js --watch & sass --watch ./app/sass/entry.scss:./app/static/styles.css --style compressed",
"build:dev": "NODE_ENV=development webpack --config webpack.config.development.js; sass ./app/sass/entry.scss:./app/static/styles.css --style compressed",
"build:prod": "NODE_ENV=production webpack --config webpack.config.production.js; sass ./app/sass/entry.scss:./app/static/styles.css --style compressed"
},
"dependencies": {
"@babel/core": "7.4.0",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.5",
"change-case": "^3.1.0",
"handy-components": "1.34.5",
"handy-tools": "2.8.4",
"jquery": "3.5.0",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-modal": "3.8.1",
"react-redux": "6.0.1",
"react-router-dom": "^5.2.0",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"styled-jsx": "^3.4.2",
"webpack": "4.29.6"
},
"devDependencies": {
"webpack-cli": "^3.3.9"
},
"engines": {
"node": "12.17.0"
}
}