-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.25 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
{
"name": "scratch-project",
"version": "1.0.0",
"description": "",
"main": "client/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "concurrently \"NODE_ENV=development nodemon server/server.js\" \"NODE_ENV=development webpack-dev-server --hot --open\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/team-rlb/scratch-project.git"
},
"nodemonConfig": {
"ignore": [
"build",
"client"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/team-rlb/scratch-project/issues"
},
"homepage": "https://github.com/team-rlb/scratch-project#readme",
"dependencies": {
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/runtime": "^7.1.2",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.11",
"cors": "^2.8.5",
"express": "^4.16.3",
"node-fetch": "^3.2.0",
"pg": "^8.7.3",
"puppeteer": "^14.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"babel-loader": "^8.2.5",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.6.0",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-hot-middleware": "^2.25.1"
}
}