-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "Crostini",
"version": "0.0.0",
"description": "Sample app for the Percolate Developer Platform (PDP)",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.5",
"@types/express": "^4.16.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/mocha": "^5.2.7",
"@types/prettier": "^1.16.1",
"@types/sinon": "^7.5.0",
"@types/supertest": "^2.0.8",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"mocha": "^6.2.2",
"prettier": "^1.16.4",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
},
"scripts": {
"start": "node index.js",
"test": "npm run prettier:check && npm run tsc && npm run mocha",
"prettier:check": "prettier --list-different src/**/* __tests__/**/*",
"prettier:write": "prettier --write src/**/* __tests__/**/*",
"tsc": "tsc --noEmit",
"check-json": "node scripts/check_manifest_json.js",
"mocha": "node node_modules/mocha/bin/mocha"
}
}