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