-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "coderitter-api-server",
"version": "0.0.0",
"description": "Coderitter API server",
"scripts": {
"start": "node ./app/App.js",
"startTs": "ts-node src/App.ts",
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha -r ts-node/register \"test/**/*.test.ts\"",
"build": "rm -rf app && tsc",
"demoData": "ts-node src/createDemoData.ts",
"lint": "eslint . --ext .ts",
"fix": "eslint . --fix --ext .ts"
},
"dependencies": {
"@types/ws": "^6.0.4",
"coderitter-api-remote-method-api": "^6.0.0",
"coderitter-api-remote-method-call": "^4.0.1",
"knight-change": "^1.0.0",
"knight-criteria": "^2.0.7",
"knight-json": "^1.0.1",
"knight-log": "^1.0.6",
"knight-orm": "^0.3.1",
"knight-validation": "^1.0.0",
"ws": "^7.4.5"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^5.2.7",
"@types/node": "^13.13.36",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"chai": "^4.2.0",
"eslint": "^8.2.0",
"mocha": "^9.1.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}