-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 KB
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
{
"name": "proxy",
"version": "",
"description": "Proxy for FEC",
"author": "Chris Hesterman",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start": "nodemon server/index.js",
"p_start": "node server/index.js",
"build": "webpack --watch -d",
"p_build": "webpack -p"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"superagent": "^5.2.2",
"supertest": "^4.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}