-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "DDRScoreTracker",
"version": "0.3.1",
"description": "Google Chrome extension for tracking your DanceDanceRevolution play records",
"author": "Ryo Watanabe (https://github.com/ryowatanabe)",
"license": "MIT",
"engines": {
"node": ">=18.12.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": ">=15",
"prettier": "^3.4.2",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs",
"prettier": "prettier \"src/**/*.{js,vue,json,html}\" \"test/**/*.js\"",
"prettier:write": "yarn prettier --write",
"build": "yarn clean; export NODE_OPTIONS=--openssl-legacy-provider; cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack",
"test": "jest",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"prettier --write",
"eslint --fix"
],
"src/**/*.{json,html}": "prettier --write",
"test/**/*.js": "prettier --write"
}
}