-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "steam-reviews-graph",
"version": "1.0.0",
"description": "Display a graph of summary information about reviews",
"main": "index.js",
"scripts": {
"start": "nodemon server",
"start-server": "node index.js",
"seed": "node ../steam-reviews-graph/db/start.js",
"build": "webpack -d --watch --mode production",
"build-server": "webpack --mode production",
"test": "jest",
"dev:react": "webpack -d --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FEC-Bell/steam-reviews-graph.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FEC-Bell/steam-reviews-graph/issues"
},
"homepage": "https://github.com/FEC-Bell/steam-reviews-graph#readme",
"dependencies": {
"cors": "^2.8.5",
"css-loader": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"enzyme-to-json": "^3.5.0",
"express": "^4.17.1",
"jest": "^26.3.0",
"mysql": "^2.18.1",
"nodemon": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}