-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "akj-ui",
"version": "2.0.0",
"private": true,
"engines": {
"node": ">= 12",
"npm": ">= 6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"prerender": "react-snap",
"test": "react-scripts test --env=jsdom --watchAll=false",
"eject": "react-scripts eject",
"lint": "npm run lint:ts && npm run lint:style",
"lint:ts": "tslint --project .",
"lint:style": "stylelint \"**/*.css\" --fix",
"prettier:write": "prettier --write './**/*.{ts,tsx,css}'",
"prettier:check": "prettier -l './**/*.{ts,tsx,css}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint",
"git add"
],
"*.css": [
"prettier --write",
"stylelint",
"git add"
]
},
"reactSnap": {
"saveAs": "html",
"skipThirdPartyRequests": true,
"preconnectThirdParty": false,
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
]
},
"dependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-image-gallery": "^1.0.9",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.4",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^13.13.50",
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.12",
"@types/react-helmet": "^5.0.16",
"@types/react-image-gallery": "^0.9.3",
"@types/react-router-dom": "^5.1.7",
"@types/smoothscroll-polyfill": "^0.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^1.19.1",
"react-snap": "^1.23.0",
"stylelint": "^13.13.0",
"stylelint-config-recommended": "^3.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.2.0",
"typescript": "^3.9.9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 3 safari version"
]
}
}