This repository has been archived by the owner on Jun 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
{
"name": "dream-plus",
"version": "0.0.1",
"license": "MIT",
"description": "A enhance UI and performance Web extension for dreamy.jejunu.ac.kr",
"author": "Muhun Kim <iam@muhun.kim>",
"scripts": {
"dev:wext": "run-p dev wext",
"dev": "yarn env:dev yarn webpack:entry",
"env:dev": "cross-env NODE_ENV=development",
"env:prod": "cross-env NODE_ENV=production",
"webpack:entry": "webpack --config ./webpack/entry.config.ts --require sucrase/register/ts --watch",
"wext": "web-ext run -p default-release --start-url https://dreamy.jejunu.ac.kr",
"lint:ts": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"axios": "^0.19.0",
"preact": "^10.0.0-rc.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/node": "^12.7.4",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^6.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"husky": ">=1",
"lint-staged": ">=8",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"sass-loader": "^8.0.0",
"serve": "^11.1.0",
"sucrase": "^3.10.1",
"typescript": "^3.6.2",
"web-ext": "^3.1.1",
"webpack": "^4.39.3",
"webpack-command": "^0.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"webExt": {
"sourceDir": "public/"
}
}