-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
50
51
52
53
54
55
56
{
"name": "nextjs-boilerplate",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "lerna run start --stream",
"build": "lerna run build --include-dependencies",
"lint": "eslint --fix -c ./.eslintrc.json './packages/**/*.{ts,tsx}'",
"test": "lerna run test",
"clean": "lerna run clean && lerna clean --y"
},
"devDependencies": {
"@types/jest": "24.9.1",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"concurrently": "6.4.0",
"eslint": "6.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"jest": "24.9.0",
"lerna": "4.0.0",
"lint-staged": "11.2.6",
"nodemon": "2.0.15",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"serve": "12.0.1",
"ts-jest": "26.5.6",
"ts-node": "10.4.0",
"tsconfig-paths": "3.11.0",
"typescript": "4.9.5",
"wait-on": "6.0.0"
},
"private": true,
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{.ts,tsx}": [
"yarn lint",
"git add"
]
},
"dependencies": {
"simple-git": "3.16.0"
}
}