-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.31 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
{
"name": "ornforlag3-projet",
"version": "1.9.9",
"license": "MIT",
"author": "Martin Andersen <marander@pm.me>",
"description": "ornforlag.no website repo, using crystallize.com headless ecommerce boilerplate using next.js",
"engines": {
"node": ">=14.18"
},
"repository": {
"url": "git@github.com:webmaeistro/ornforlag-api-vipps.git",
"type": "git"
},
"scripts": {
"dev": "next dev",
"dev:vercel": "vercel dev",
"dev:inspect": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "NODE_ENV=production next start",
"start-platformsh": "NODE_ENV=production next start -p $PORT",
"prod": "npm run build && npm run start",
"lint": "next lint",
"validate": "lint-staged",
"bootstrap-shapes-to-tenant": "node ./_repo-utils/bootstrap-furniture-shapes.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"dependencies": {
"@crystallize/content-transformer": "^9.0.1",
"@crystallize/grid-renderer": "^2.1.1",
"@crystallize/node-vipps": "^0.1.4",
"@crystallize/react-content-transformer": "^2.0.0",
"@crystallize/react-image": "^7.2.1",
"@crystallize/react-layout": "^3.2.0",
"@crystallize/react-video": "^1.6.3",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "1.8.0",
"babel-plugin-styled-components": "^1.13.2",
"immer": "^9.0.12",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"next": "^12.1.0",
"next-i18next": "^8.1.3",
"next-seo": "^4.29.0",
"prop-types": "^15.7.2",
"rc-slider": "^9.5.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"react-query": "^3.5.12",
"semver-regex": "^3.1.3",
"stripe": "8.73.0",
"styled-components": "^5.3.0",
"styled-is": "^1.3.0",
"uuid": "3.3.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@crystallize/import-utilities": "^0.36.1",
"@next/eslint-plugin-next": "^11.1.2",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.0",
"fs-extra": "^9.0.1",
"husky": "^7.0.4",
"lint-staged": "^10.2.2",
"node-fetch": "^2.6.1",
"prettier": "^2.0.5"
},
"private": false
}