This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.77 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
64
65
66
67
68
69
70
{
"name": "inject-code",
"displayName": "Inject Code",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "jugg dev",
"prebuild": "yarn test",
"build": "HARD_SOURCE=none jugg build",
"test": "jest"
},
"keywords": [],
"author": "daief",
"license": "MIT",
"devDependencies": {
"@axew/jugg": "0.1.0",
"@axew/jugg-plugin-react": "0.0.9",
"@hot-loader/react-dom": "^16.8.6",
"@types/chrome": "^0.0.86",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.3",
"copy-webpack-plugin": "^5.0.3",
"husky": "^2.3.0",
"indexeddbshim": "^4.1.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"react-hot-loader": "^4.9.0",
"ts-import-plugin": "^1.5.5",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"@rematch/core": "^1.1.0",
"@rematch/loading": "^1.1.3",
"antd": "^3.19.2",
"axios": "^0.19.0",
"codemirror": "^5.47.0",
"dexie": "^2.0.4",
"dexie-export-import": "^1.0.0-beta.12",
"react": "^16.8.6",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"redux-react-hook": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.css": ["prettier --parser css --write", "git add"],
"*.less": ["prettier --parser less --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"],
"*.{ts,tsx}": [
"tslint --fix",
"prettier --parser typescript --write",
"git add"
]
},
"ignore": []
}
}