-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·42 lines (42 loc) · 999 Bytes
/
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
{
"name": "todomvc-orbit-server",
"version": "0.5.0",
"author": "Paul Chavard",
"license": "MIT",
"dependencies": {
"koa": "^2.13.1",
"koa-orbit": "^0.2.1",
"orbit-sql": "^0.4.2",
"sqlite3": "^5.0.2"
},
"scripts": {
"dev": "ts-node-dev src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"engines": {
"node": ">= 14.*"
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/koa": "^2.13.0",
"@types/node": "^14.14.31",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.2"
}
}