-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 855 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
36
37
38
39
40
{
"name": "app",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "cd app/__test__ && NODE_ENV=test jest --no-cache",
"build": "tsc",
"lint:staged": "lint-staged && git add app",
"start": "npm run build && node dist/source/main.js"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.13",
"lint-staged": "8.1.1",
"jest": "24.6.0",
"ts-jest": "24.0.2",
"tslint": "5.10.0",
"tslint-config-prettier": "1.13.0",
"typemoq": "2.1.0",
"typescript": "3.2.2"
},
"lint-staged": {
"linters": {
"*.{ts,tsx}": "tslint --fix"
}
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/*Test.(ts|tsx)"
]
}
}