-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
{
"name": "goodgame",
"version": "1.0.0",
"description": "The one stop shop for game reviews.",
"main": "./build/index.js",
"scripts": {
"test": "jest",
"start": "cross-env NODE_ENV=production node server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon server/server.js\" \"webpack serve\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdamJoesten/goodgame.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AdamJoesten/goodgame/issues"
},
"homepage": "https://github.com/AdamJoesten/goodgame#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"supertest": "^6.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"pg": "^8.5.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.2.0",
"sass": "^1.32.0",
"styled-components": "^5.2.1"
}
}