-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
71
{
"name": "ytb-danmaku",
"version": "2.5.3",
"description": "ytb-danmaku",
"main": "src/index.js",
"scripts": {
"dev:local": "rollup -c -w --environment NODE_ENV:development",
"dev:youtube": "rollup -c -w --environment NODE_ENV:production",
"build": "rollup -c --environment NODE_ENV:production",
"lint": "eslint --fix --ext js .",
"prepare": "husky install",
"postversion": "git push && git push --tags"
},
"author": "IronKinoko",
"homepage": "https://greasyfork.org/scripts/409684-youtube-danmaku",
"repository": {
"type": "git",
"url": "https://github.com/IronKinoko/ytb-danmaku"
},
"lint-staged": {
"src/**/*.{js,jsx,sass}": [
"prettier -c -w",
"eslint --fix"
]
},
"license": "MIT",
"dependencies": {
"@ironkinoko/danmaku": "^1.2.6",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"i18next": "^21.8.10",
"lodash.merge": "^4.6.2",
"mobx": "^6.3.2",
"mobx-react": "^7.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-i18next": "^11.17.2"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.12.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"core-js": "^3.12.1",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"rollup": "^2.48.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-styles": "^3.14.1",
"sass": "^1.32.13"
},
"browserslist": [
"chrome >= 68"
],
"prettier": {
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"trailingComma": "es5"
}
}