-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "demo-0106",
"version": "0.0.0",
"description": "demo",
"license": "UNLICENSED",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "web-scripts lint --ignore-path=.gitignore",
"test": "web-scripts test --config jest.config.js",
"pretest:ci": "yarn lint",
"test:ci": "yarn test --ci --coverage --reporters=default --reporters=jest-junit"
},
"dependencies": {
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-styled-components": "^1.10.6",
"next": "^9.1.1",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@spotify/tsconfig": "^5.0.0",
"@spotify/web-scripts": "^5.0.0",
"@testing-library/react": "^8.0.1",
"@types/node": "^14.14.32",
"@types/react": "^16.8.7",
"@types/react-dom": "^16.8.2",
"@types/styled-components": "^4.1.18",
"husky": "^2.7.0",
"jest-junit": "^8.0.0",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "web-scripts precommit"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}