-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 757 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 757 Bytes
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
{
"name": "root",
"private": true,
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.12.30",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.1.0",
"jest-runner-tsc": "^1.6.0",
"lerna": "^3.20.2",
"lerna-update-wizard": "^0.17.7",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"publish": "lerna publish --exact",
"lint": "eslint **/*.ts",
"test": "jest",
"ci": "npm run start:test:db && jest && stop:test:db",
"start:test:db": "docker-compose up --build -d",
"stop:test:db": "docker-compose down"
}
}