-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "react-storefront-starter-app",
"version": "1.0.0",
"private": true,
"description": "",
"homepage": "",
"author": "",
"license": "UNLICENSED",
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"prod": "cross-env NODE_ENV=production node server.js",
"build": "next build",
"test": "jest",
"deploy": "npm run build && xdn deploy",
"rsf:link": "yalc add react-storefront",
"prettier": "prettier --write \"**/*.js\" \"!{node_modules,.next,.yalc}/**\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@material-ui/core": "4.11.2",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@material-ui/styles": "4.11.2",
"@svgr/webpack": "^4.3.3",
"clsx": "^1.0.4",
"cross-env": "^5.2.0",
"isomorphic-unfetch": "^3.0.0",
"lorem-ipsum": "^2.0.3",
"module-alias": "^2.2.1",
"next": "^10.0.3",
"preact": "10.1.0",
"preact-render-to-string": "^5.1.2",
"preact-ssr-prepass": "^1.0.0",
"qs": "^6.9.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-storefront": "^8.17.4",
"react-visibility-sensor": "^5.1.1"
},
"devDependencies": {
"babel-plugin-transform-imports": "^2.0.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
},
"lint-staged": {
"*.js": [
"yalc remove --all",
"npm run prettier",
"git add"
]
}
}