-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.57 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lerna:version": "lerna version --conventional-commits",
"lerna:publish": "rimraf .parcel-cache && lerna publish -m 'chore: publish'",
"prepare": "husky install"
},
"lerna": {
"packages": [
"packages/[!_]*"
],
"command": {
"publish": {
"ignoreChanges": [
"*.md"
]
}
},
"version": "independent"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
},
"dependencies": {
"@chakra-ui/react": "1.6.10",
"@emotion/react": "11.5.0",
"@emotion/styled": "11.3.0",
"focus-visible": "5.2.0",
"framer-motion": "4.1.17",
"next": "13.0.0",
"nprogress": "0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@commitlint/config-lerna-scopes": "13.2.0",
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@types/jest": "27.0.2",
"@types/react": "17.0.31",
"@types/react-dom": "17.0.10",
"husky": "7.0.4",
"jest": "27.3.1",
"lerna": "4.0.0",
"parcel": "2.7.0",
"rimraf": "3.0.2",
"ts-jest": "27.0.7",
"typescript": "4.7.4"
}
}