-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.09 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
{
"name": "turbo-nextjs-mui-ecommerce",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"build:ecommerce": "turbo run build --filter=@ecommerce/storefront",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"commit": "./node_modules/cz-customizable/standalone.js",
"clean": "pnpm clean:node-modules & pnpm clean:next-cache & pnpm clean:turbo-cache",
"clean:node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:next-cache": "find . -name '.next' -type d -prune -exec rm -rf '{}' +",
"clean:turbo-cache": "rm -rf ./node_modules/.cache",
"postinstall": "sh script/submodule-husky-hook.sh"
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@koa/router": "^12.0.0",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "5.0.0-alpha.114",
"@mui/material": "^5.11.2",
"@mui/styles": "^5.11.2",
"@reduxjs/toolkit": "^1.9.1",
"clsx": "^1.2.1",
"koa": "^2.14.1",
"lodash": "^4.17.21",
"notistack": "^2.0.8",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.43.0",
"react-intl": "^6.2.5",
"react-redux": "^8.0.5"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.31.0",
"eslint-config-ecommerce": "workspace:*",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.1.0",
"turbo": "^1.6.3"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}