-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.08 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
{
"name": "mvp",
"version": "1.0.0",
"description": "typing game",
"main": "server/index.js",
"scripts": {
"build": "webpack",
"start": "nodemon server/index.js",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7ingyu/typing.git"
},
"author": "Ting-Yu Chen",
"license": "ISC",
"bugs": {
"url": "https://github.com/7ingyu/typing/issues"
},
"homepage": "https://github.com/7ingyu/typing#readme",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"moment": "^2.29.1",
"nodemon": "^2.0.7",
"pg": "^8.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.13.1",
"socket.io": "^4.1.2",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"morgan": "^1.10.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
}
}