-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "nextjs-sitecore-caas-starter-kit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx,scss}",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "yarn format && yarn lint && yarn type-check",
"postinstall": "husky install",
"generate:intents": "uniform optimize manifest download --output ./lib/intentManifest.json --apiKey 9b2c1b24-3c60-48cd-b342-ee9038d73951"
},
"dependencies": {
"@uniformdev/optimize-tracker-browser": "^5.0.1",
"@uniformdev/optimize-tracker-react": "^5.0.1",
"next": "10.0.7",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@uniformdev/cli": "^5.0.1",
"autoprefixer": "^10.2.5",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"tailwindcss": "^2.0.3",
"typescript": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn type-check && yarn lint ."
}
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}