-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
{
"name": "jsonrpc-boilerplate",
"version": "1.0.0",
"description": "",
"author": "yak0 - [email protected]",
"license": "MIT",
"scripts": {
"start": "node dist/app.js",
"start:dev": "ts-node src/app.ts",
"deploy": "npm install && npm run test && npm run build && npm start",
"build": "tsc -p tsconfig.json",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"tslint:fix": "tslint --project tsconfig.json --fix",
"test": "mocha -r ts-node/register/transpile-only 'src/**/*.spec.ts'",
"nodemon": "nodemon --config nodemon.json"
},
"dependencies": {
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"es6-shim": "^0.35.5",
"express": "^4.17.1",
"jsonrpc-lite": "^2.1.0",
"mongoose": "^5.7.13",
"npx": "^10.2.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.6",
"@types/express": "^4.17.2",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.32",
"@types/node": "^12.12.14",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"@types/sinon-mongoose": "^1.3.9",
"@types/uuid": "^3.4.6",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"mocha-eslint": "^6.0.0",
"nodemon": "^2.0.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"sinon-mongoose": "^2.3.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.3"
},
"mocha": {
"package": "./package.json",
"diff": true,
"extension": [
"spec.ts"
],
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd"
}
}