forked from duxcore/duxcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.43 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
{
"name": "duxcore",
"version": "0.0.1-dev.3",
"private": true,
"workspaces": [
"website",
"wrapper",
"core",
"dashboard"
],
"scripts": {
"commit": "cz",
"commit:signed": "cz -S",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"dash": "yarn workspace dashboard",
"core": "yarn workspace core"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HoloPanio/duxcore.git"
},
"license": "GPL-3.0",
"homepage": "https://github.com/HoloPanio/duxcore#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^15.12.2",
"commitizen": "^4.2.3",
"commitlint": "~12.1.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.26.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,ejs}": [
"prettier --write"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"next": "^12.0.2",
"typescript": "^4.6.3"
},
"resolutions": {
"@types/react": "17.0.2",
"next": "12.0.2"
},
"packageManager": "[email protected]"
}