-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "@taichi-ti/sch",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"eslint": "eslint --ext .ts,.tsx,.js,.jsx src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/taichiyi/Schedule.git"
},
"keywords": [],
"author": "taichiyi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/taichiyi/Schedule/issues"
},
"homepage": "https://github.com/taichiyi/Schedule#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.1",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^2.38.4",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"dependencies": {}
}