-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "PROJECT_NAME",
"version": "1.0.0",
"private": true,
"engines": {
"node": "^14"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"qa": "yarn test && yarn lint && yarn type-check",
"test": "jest",
"type-check": "tsc",
"lint": "eslint src --ext .ts,.tsx",
"lint:css": "stylelint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"prepare": "husky install"
},
"dependencies": {
"jest": "^27.2.4",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.1"
},
"devDependencies": {
"@babel/runtime-corejs2": "^7.15.4",
"@strv/eslint-config-react": "^4.0.0",
"@strv/eslint-config-typescript": "^3.0.0",
"@strv/stylelint-config-styled-components": "^2.0.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.14",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.0",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"typescript": "^4.4.3"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^~/(.*)": "<rootDir>/src/$1"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"stylelint",
"prettier --write"
],
"*.{json,md,html}": [
"prettier --write"
]
}
}