forked from CodingCatDev/codingcat.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 917 Bytes
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
{
"name": "codingcat.dev",
"private": "true",
"version": "0.0.6",
"description": "Main codingcat.dev site",
"main": "frontend/main/",
"repository": {
"type": "git",
"url": "git+https://github.com/CodingCatDev/codingcat.dev"
},
"author": "Alex Patterson",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/CodingCatDev/codingcat.dev/issues"
},
"homepage": "https://github.com/CodingCatDev/codingcat.dev#readme",
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "lerna run --parallel dev",
"build": "lerna run --parallel build",
"start": "lerna run --parallel start ",
"lint": "lerna run --parallel lint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"husky": "^4.3.6",
"lerna": "^3.22.1"
},
"resolutions": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}