-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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": "ignews",
"private": false,
"version": "1.0.1",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --quiet --fix './src/**/*.{ts,tsx}'",
"prettier:write": "npx prettier --write src/**/*.{ts,tsx}",
"prepare": "husky install",
"format": "npm run lint && npm run prettier:write"
},
"dependencies": {
"@prismicio/client": "^5.1.0",
"@stripe/stripe-js": "^1.21.1",
"@types/prismic-dom": "^2.1.1",
"@types/uuid": "^8.3.3",
"axios": "^0.24.0",
"faunadb": "^4.4.1",
"next": "12.0.4",
"next-auth": "^3.29.0",
"next-slicezone": "^0.1.3",
"prismic-dom": "^2.2.6",
"prismic-reactjs": "^1.3.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"sass": "^1.43.4",
"stripe": "^8.191.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/next-auth": "^3.15.0",
"@types/node": "16.11.9",
"@types/react": "17.0.36",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "7",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"prettier": "2.4.1",
"typescript": "4.5.2"
}
}