-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 931 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
{
"name": "root",
"version": "0.0.0",
"description": "",
"private": true,
"scripts": {
"start": "npm i && lerna bootstrap",
"build": "lerna run tsc",
"watch": "lerna run --parallel dev",
"test": "jest --coverage --verbose --colors --silent",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint -c tslint.json -p tsconfig.json",
"clean": "lerna clean && rm -rf ./packages/*/package-lock.json ./packages/*/dist"
},
"author": "0xMatt <[email protected]>",
"license": "MIT",
"dependencies": {
"dotenv": "^6.1.0",
"path-to-regexp": "^2.4.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jest": "^23.3.7",
"@types/node": "^10.12.0",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"lerna": "^3.8.0",
"supertest": "^3.3.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
}
}