-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "acm_typing",
"version": "1.0.0",
"description": "ACM Typing Game",
"main": "dist/index.js",
"scripts": {
"webpack": "webpack",
"tsc": "tsc",
"build": "run-p webpack tsc",
"start": "run-s build man-start",
"man-start": "node dist/index.js"
},
"keywords": [],
"author": "Rowan ACM",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/RowanACM/acm_typing.git"
},
"bugs": {
"url": "https://github.com/RowanACM/acm_typing/issues"
},
"homepage": "https://github.com/RowanACM/acm_typing#readme",
"dependencies": {
"express": "^4.17.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/jquery": "^3.3.31",
"@types/node": "^12.7.8",
"@types/socket.io-client": "^1.4.32",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"npm-run-all": "^4.1.5",
"ts-loader": "^6.1.2",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}