-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "eslint-prettier-sample",
"private": true,
"version": "1.0.0",
"description": "Koot.js sample project that using custom ESLint & prettier rules",
"author": {
"name": "diablohu",
"email": "[email protected]"
},
"homepage": "https://github.com/cmux/koot#readme",
"license": "none",
"repository": {
"type": "git",
"url": "https://github.com/cmux/koot.git"
},
"scripts": {
"start": "koot-start",
"start:server": "koot-start --no-build",
"build": "koot-build",
"build:spa": "koot-build --type spa",
"dev": "koot-dev",
"dev:no-open": "koot-dev --no-open",
"dev:spa": "koot-dev --type spa --no-open",
"analyze": "koot-analyze",
"eslint": "eslint \"src/**/*.+(js|jsx|ts|tsx)\""
},
"dependencies": {
"axios": "0.21.1",
"classnames": "2.2.6",
"koot": "0.9.0-beta.7"
},
"devDependencies": {
"autoprefixer": "9.5.1",
"babel-eslint": "10.0.1",
"cssnano": "4.1.10",
"eslint": "5.16.0",
"eslint-config-koot": "0.0.2",
"husky": "2.2.0",
"lint-staged": "8.1.6",
"jest": "24.8.0",
"normalize.css": "8.0.1",
"prettier": "1.17.0",
"redux-logger": "3.0.6",
"svg-url-loader": "2.3.2"
},
"bugs": {
"url": "https://github.com/cmux/koot/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
}
}