-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1003 Bytes
/
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
{
"name": "sanic-webpack-react",
"version": "0.0.0",
"description": "This is a boilerplate based on webpack, react and sanic as a webserver",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "python3 run.py",
"backtest": "pytest tests.py",
"test": "react-scripts test"
},
"author": "",
"license": "BSD-2-Clause",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.0.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.0.0",
"react-scripts": "^1.0.17",
"react-test-renderer": "^16.2.0",
"react-websocket": "^2.0.0",
"webpack": "^3.10.0"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}