-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.25 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
{
"name": "sanbl.as",
"version": "1.0.0",
"description": "sanbl.as website",
"author": "Nathaniel Hill <nata@goguna.com>",
"license": "UNLICENSED",
"keywords": [],
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true yarn build",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect",
"test": "snyk test"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"snyk": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"healthier"
]
},
"prettier": {
"jsxSingleQuote": true,
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"next": "^9.4.4",
"next-offline": "^5.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"snyk": "^1.324.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^9.4.4",
"cross-env": "^7.0.2",
"healthier": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"tailwindcss": "^1.5.2"
}
}