-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 930 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
34
35
{
"name": "schoolplatform",
"version": "0.0.0",
"description": "",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^10.14.10",
"jest": "~24.8.0",
"prettier": "~1.18.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"tslint": "~5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.14.0",
"typescript": "~3.5.0"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Misha Marinenko <[email protected]>",
"license": "MIT",
"dependencies": {
"consola": "^2.9.0",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"pug": "^2.0.4",
"tslib": "~1.10.0"
}
}