-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.17 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "turbo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build": "tsc -b tsconfig.build.json",
"watch": "tsc -b -w tsconfig.build.json",
"lint": "eslint . --ext .ts,.tsx",
"fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest",
"test-watch": "jest --watch",
"create-pkg": "yo ./packages/generator-turbo-package"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/generator-turbo-package/"
],
"testMatch": [
"**/src/**/(*.)(spec|test).(ts|tsx)"
],
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.18.3",
"prettier": "^1.19.1",
"typescript": "^3.7.5",
"ts-jest": "^25.2.1",
"yo": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}