forked from superchow/vanaheim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "root",
"private": true,
"scripts": {
"commit": "git-cz",
"lint": "eslint --ext .js,.ts,.tsx .",
"bootstrap": "lerna bootstrap --npm-client=yarn",
"dev-server": "lerna run --scope vanaheim-server dev --stream",
"dev-website": "lerna run --scope vanaheim-website dev --stream",
"dev": "lerna run --parallel dev --stream",
"test": "lerna run --parallel test --stream",
"test-shared": "lerna run --scope vanaheim-shared test --stream",
"lint-staged": "lint-staged",
"build": "docker build -t diamondyuan/vanaheim ."
},
"lint-staged": {
"**/*.{js,ts,tsx,jsx}": [
"yarn lint --fix",
"git add"
]
},
"devDependencies": {
"@diamondyuan/eslint-config-react-typescript": "^6.0.0",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.3",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-eslint": "^10.0.1",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"lerna": "^3.13.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"typescript": "^3.4.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"pre-commit": [
"lint-staged"
],
"dependencies": {
"pre-commit": "^1.2.2",
"react-dropzone": "^10.1.5"
},
"version": "1.0.0"
}