-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
{
"name": "sweeper-chess",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "run-p build:*",
"build:client": "vite build",
"build:server": "rimraf ./build/server && rimraf ./build/game && tsc --project ./src/tsconfig.json",
"dev": "run-p dev:*",
"dev:nodemon": "cross-env NODE_ENV=development nodemon",
"dev:watch": "tsc --project ./src/tsconfig.json -w",
"start": "node build/server/index.js",
"generator": "ts-node --project ./generator/tsconfig.json ./generator/generator.ts",
"lint": "eslint **/*.js **/*.ts **/*.vue",
"lint:fix": "eslint --fix **/*.js **/*.ts **/*.vue"
},
"author": {
"name": "Daniel Shields",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"convict": "^6.0.1",
"cross-env": "^7.0.3",
"ejs": "^3.1.6",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"nanotimer": "^0.3.15",
"socket.io": "^4.0.0",
"vite": "^2.0.5"
},
"devDependencies": {
"@types/clone": "^2.1.0",
"@types/convict": "^6.0.1",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.8",
"@types/js-cookie": "^2.2.6",
"@types/nanotimer": "^0.3.0",
"@types/node": "^14.14.34",
"@types/socket.io": "^2.1.13",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.7",
"@vue/eslint-config-typescript": "^7.0.0",
"class-transformer": "^0.4.0",
"clone": "^2.1.2",
"eslint": "^7.22.0",
"eslint-plugin-vue": "^7.7.0",
"js-cookie": "^2.2.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"socket.io-client": "^4.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"uuid": "^8.3.2",
"vue": "3.0.7"
}
}