-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.17 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
{
"name": "zone",
"version": "0.0.1",
"description": "a server for zones",
"scripts": {
"start": "node lib/server/run.js",
"test": "jest --config jestconfig.json",
"build:client:script": "webpack ./src/client/main.ts --config ./src/client/webpack.config.js",
"watch:client:script": "webpack ./src/client/main.ts --config ./src/client/webpack.config.dev.js",
"build:client:html": "pug3 --basedir src/client/ --pretty src/client/ -o public",
"build:client:css": "copyfiles -u 2 \"src/client/*.css\" public",
"build:client": "npm run build:client:css && npm run build:client:html && npm run build:client:script",
"build:server": "tsc -p src/server/tsconfig.json",
"build": "npm run build:server && npm run build:client",
"format": "prettier --write \"src/**/*.ts\"",
"lint:server": "tslint -p src/server/tsconfig.json",
"lint:client": "tslint -p src/client/tsconfig.json",
"lint": "npm run lint:server && npm run lint:client"
},
"engines": {
"node": "10.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ragzouken/zone.git"
},
"license": "MIT",
"keywords": [
"node",
"express",
"zone"
],
"dependencies": {
"express": "^4.17.1",
"express-ws": "^4.0.0",
"joi": "^17.4.0",
"lowdb": "^1.0.0",
"nanoid": "^3.1.3",
"node-fetch": "^2.6.1",
"request": "^2.88.2",
"tmp": "^0.2.1"
},
"devDependencies": {
"@anduh/pug-cli": "^1.0.0-alpha8",
"@types/express": "^4.17.6",
"@types/express-ws": "^3.0.0",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.2.1",
"@types/lowdb": "^1.0.9",
"@types/nanoid": "^2.1.0",
"@types/node": "^13.11.1",
"@types/node-fetch": "^2.5.6",
"@types/request": "^2.48.4",
"@types/tmp": "^0.2.0",
"@types/ws": "^7.2.4",
"blitsy": "^0.2.1",
"copyfiles": "^2.4.1",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.2.0",
"prettier": "^2.0.4",
"ts-jest": "^26.5.1",
"ts-loader": "^7.0.5",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5",
"url": "^0.11.0",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"ws": "^7.2.5"
}
}