-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 KB
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
{
"name": "@mouldjs/components",
"version": "0.0.1",
"description": "Mould Components",
"repository": "https://github.com/mouldjs/components.git",
"keywords": [
"mould",
"components"
],
"scripts": {
"clean": "rm -rf build",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.build.json"
},
"peerDependencies": {
"react": "^16.8.0",
"react-redux": "^7.0.0"
},
"dependencies": {
"@blueprintjs/core": "^3.31.0",
"@modulz/radix": "^0.0.1-beta.44",
"@mouldjs/core": "../core/build",
"next": "^9.3.2",
"ramda": "^0.27.1",
"react-dnd": "^10.0.2",
"react-feather": "^2.0.8",
"react-moveable": "^0.21.6",
"styled-components": "^5.1.1",
"zod": "^1.11.4"
},
"devDependencies": {
"@types/ramda": "^0.27.14",
"@types/react": "^16.9.49",
"@types/styled-components": "^5.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"react": "^16.13.1",
"react-redux": "^7.2.1",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,css,json,md}": [
"prettier --write",
"git add"
]
}
}