-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.54 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
{
"name": "ornforlag-site",
"version": "3.0.0",
"license": "MIT",
"private": true,
"author": "Martin Andersen <marander@protonmail.com> (@webmaeistro) ",
"description": "repo for ornforlag.no ecommerce website build with Nextjs and Crystallize. Vipps payments ",
"engines": {
"node": ">=10.10"
},
"repository": {
"url": "git@github.com:webmaeistro/next-ornforlag_no-website.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": "eslint .",
"validate": "lint-staged",
"repo:cleanup-payment-providers": "node ./_repo-utils/cleanup-payment-providers.js",
"postinstall": "node ./_repo-utils/postinstall.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@crystallize/content-transformer": "^5.2.1",
"@crystallize/grid-renderer": "^2.0.1",
"@crystallize/node-vipps": "^0.1.0",
"@crystallize/react-image": "^3.1.1",
"@crystallize/react-layout": "^3.2.0",
"@nerdenough/mjml-ncc-bundle": "^1.1.1",
"@sendgrid/mail": "^7.2.3",
"accept-language": "^3.0.18",
"dashjs": "^3.1.1",
"framer-motion": "^1.11.1",
"i18next": "^19.5.4",
"immer": ">=8.0.1"
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mjml": "^4.6.3",
"next": "^11.0.1",
"prop-types": "^15.7.2",
"pusher": "^3.0.1",
"pusher-js": "^7.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"styled-components": "^5.1.1",
"styled-is": "^1.3.0",
"timeago-react": "^3.0.0",
"uuid": "^3.3.2",
"video.js": "^7.8.4",
"videojs-contrib-dash": "^2.11.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.1",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"husky": "^4.2.1",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5"
}
}