This repository has been archived by the owner on Aug 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "reaktor",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"classnames": "^2.2.5",
"color": "^3.0.0",
"exports-loader": "^0.7.0",
"express": "^4.16.2",
"jss": "^9.8.0",
"jss-preset-default": "^4.3.0",
"knex": "^0.14.4",
"moment": "^2.21.0",
"mysql2": "^1.5.2",
"particles.js": "^2.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"recharts": "^1.0.0-beta.10",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"flow-bin": "^0.67.1",
"jest": "^22.4.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10"
},
"scripts": {
"start": "nodemon --watch back/dist back/dist/App.js",
"build-frontend": "webpack --watch --colors --progress",
"build-backend": "cd back && babel src --out-dir dist -w",
"build": "npm run build-frontend & npm run build-backend",
"test": "jest"
}
}