forked from mancjs/mancjs-code-golf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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": "mancjs-golf",
"version": "0.0.1",
"description": "A code golf game server for JavaScript",
"type": "module",
"scripts": {
"start": "CG_ADMIN_PASSWORD=cheese ts-node --esm --files --project tsconfig.json src/index.ts",
"tests": "jest --runInBand",
"tests-watch": "jest --watch",
"format": "prettier --write '**/*'",
"format-check": "prettier --check '**/*'",
"typecheck": "tsc --noEmit --project tsconfig.json",
"lint": "eslint . --ext .ts",
"test": "npm run typecheck && npm run format-check && npm run lint && npm run tests"
},
"author": "Martin Rue",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"express-basic-auth": "^1.1.5",
"jsmin": "~1.0.1",
"lodash": "^4.17.10",
"multiparty": "^4.1.3",
"mustachex": "^0.0.3",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.11.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.108",
"@types/multiparty": "^0.0.31",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^27.3.1",
"prettier": "^3.3.2",
"ts-jest": "^27.0.7",
"typescript": "^4.8.3"
}
}