-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "bookshelf",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "tsc && node build/server.js",
"dev": "ts-node-dev --respawn --transpileOnly src/server.ts",
"test": "mocha --exit -r ts-node/register src/test/*.spec.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/request": "^2.48.2",
"express": "^4.16.4",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"@types/request-promise-native": "^1.0.16",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^6.0.2",
"prettier": "^1.18.2",
"request": "^2.88.0",
"sinon": "^7.3.1",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
}
}