-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (84 loc) · 2.47 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
{
"name": "spx",
"version": "1.0.0",
"description": "",
"main": "./build/index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "npm-run-all --parallel server client",
"server": "nodemon index.js",
"client": "webpack --watch --progress",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"@types/react-dom": "^16.9.6",
"axios": "^0.19.2",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-dynamic-import-node-babel-7": "^2.0.7",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"busboy": "^0.3.1",
"clean-webpack-plugin": "^3.0.0",
"cookies": "^0.8.0",
"copy-webpack-plugin": "^6.0.1",
"cors": "^2.8.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"img-loader": "^3.0.1",
"immutable": "^4.0.0-rc.12",
"isomorphic-fetch": "^2.2.1",
"jest": "^26.0.1",
"js-cookie": "^2.2.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"npm": "^6.14.5",
"npm-run-all": "^4.1.5",
"persist": "^0.2.7",
"query-string": "^6.12.1",
"querystring": "^0.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-google-charts": "^3.0.15",
"react-helmet": "^6.0.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"serialize-javascript": "^3.0.0",
"url-loader": "^4.1.0",
"uuid": "^7.0.3",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"css-loader": "^3.6.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1"
}
}