-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"express": "^4.16.4",
"papaparse": "^4.6.2",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"webpack": "^4.27.1"
},
"scripts": {
"test": "jest",
"start": "./node_modules/.bin/webpack --config ./webpack.js --mode production && node server.js",
"dev": "./node_modules/.bin/webpack --config ./webpack.js --mode development && node server.js",
"eslint": "./node_modules/.bin/eslint . --ext .js,.jsx"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-plugin-react": "^7.11.1",
"fernet": "^0.3.1",
"jest": "^23.6.0",
"webpack-cli": "^3.1.2"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"verbose": false
}
}