-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "react-ecommerce",
"private": true,
"version": "1.0.0",
"description": "React E-commerce monorepo",
"repository": "https://github.com/react-shop/react-ecommerce",
"author": "Vinicius Arruda",
"engines": {
"node": "14.x",
"npm": "You must use yarn in this project!",
"yarn": "^1.22.x"
},
"scripts": {
"story": "lerna run story --stream",
"start": "lerna run start --parallel --scope '{web,@react-shop/design-system,@react-shop/sdk}'",
"test": "lerna run test --stream ",
"server:dev": "lerna run dev --scope @react-shop/server"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"@commitlint/*"
]
},
"npmClient": "yarn",
"useWorkspaces": true,
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/react": "17.0.14",
"@types/react-dom": "17.0.9",
"@types/styled-components": "^5.1.12",
"husky": "^7.0.2",
"lerna": "3.19.0",
"typescript": "4.3.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}