-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
100 lines (100 loc) · 3.22 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "cerveau",
"version": "2.4.0",
"description": "The Node.js implementation of a multi-game server intended for games with AIs within the Cadre framework.",
"repository": {
"type": "git",
"url": "git://github.com/siggame/Cerveau"
},
"license": "MIT",
"private": true,
"dependencies": {
"@cadre/ts-utils": "2.0.0",
"@types/argparse": "1.0.38",
"@types/body-parser": "1.19.0",
"@types/chess.js": "0.10.1",
"@types/express": "4.17.7",
"@types/express-handlebars": "3.1.0",
"@types/fs-extra": "9.0.1",
"@types/gaussian": "1.1.2",
"@types/json5": "0.0.30",
"@types/lodash": "4.14.159",
"@types/node": "14.0.27",
"@types/seedrandom": "2.4.28",
"@types/uuid": "8.0.1",
"@types/v8-profiler": "0.0.6",
"argparse": "1.0.10",
"body-parser": "1.19.0",
"chess.js": "0.10.3",
"delay": "4.4.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-handlebars": "5.1.0",
"fs-extra": "9.0.1",
"gaussian": "1.1.0",
"json5": "2.1.3",
"lark-websocket": "github:JacobFischer/lark-websocket#19c02d13cd5e0de098196e4b43089d571c55714c",
"lodash": "4.17.19",
"moment": "2.27.0",
"sanitize-filename": "1.6.3",
"seedrandom": "3.0.5",
"ts-node": "8.10.2",
"ts-typed-events": "2.0.0",
"tsconfig-paths": "3.9.0",
"uuid": "8.3.0",
"winston": "3.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"apidoc": "0.24.0",
"copyfiles": "2.3.0",
"eslint": "7.6.0",
"eslint-config-jacobfischer": "github:JacobFischer/eslint-config.git#94bffc94da2336b08dd5159a1ab4c93525c46d4b",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsdoc": "30.2.1",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"npm-check-updates": "7.0.3",
"prettier": "2.0.5",
"shx": "0.3.2",
"tslib": "2.0.1",
"typescript": "3.9.7"
},
"_optionalDependencies": {
"v8-profiler": "5.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "npm run js",
"test": "npm run prettier:test && npm run lint && npm run build:test",
"build": "npm run build:assets && tsc",
"build:assets": "copyfiles -u 1 \"src/**/*.hbs\" \"src/**/*.png\" \"src/**/*.css\" dist/",
"build:test": "tsc --noEmit",
"build:watch": "npm run build -- --watch",
"live": "ts-node -r tsconfig-paths/register src/index.ts",
"js": "node dist/index.js",
"clean": "shx rm -rf dist",
"purge": "npm run clean && shx rm -rf node_modules package-lock.json",
"rebuild": "npm run clean && npm run build",
"link:symbolic": "shx ln -s ./src/web/styles dist/web/styles && shx ln -s ./src/web/views dist/web/views",
"link:copy": "shx cp -R ./src/web/styles dist/web/styles && shx cp -R ./src/web/views dist/web/views",
"docs": "npm run docs:api",
"docs:api": "apidoc -i ./src/web/routes/ -o ./docs",
"lint": "eslint ./ --max-warnings=0",
"prettier:base": "prettier **/*.{js,ts}",
"prettier": "npm run prettier:base -- --write",
"prettier:test": "npm run prettier:base -- --check",
"ncu": "ncu -u"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"_moduleAliases": {
"src": "dist/"
}
}