-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "JusTab",
"version": "0.5.1",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.7",
"@vue/test-utils": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.3",
"chrome-webstore-upload-cli": "^2.0.1",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-plugin-vue": "^8.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.7",
"jsdom": "^19.0.0",
"mversion": "^2.0.1",
"sass": "^1.47.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.8",
"vue-svg-inline-loader": "^2.1.2",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"dependencies": {
"dayjs": "^1.10.7",
"dragula": "^3.7.3",
"vue": "^2.6.14",
"vue-lazyload": "^1.3.3",
"vue-router": "^3.5.3",
"vuex": "^3.6.2"
},
"scripts": {
"start": "NODE_ENV=development webpack && NODE_ENV=development webpack serve",
"lint": "eslint . --ext .vue,.js",
"lint:fix": "npm run lint -- --fix",
"build": "NODE_ENV=production webpack",
"version": "npm run version:patch",
"version:patch": "mversion patch",
"version:minor": "mversion minor",
"version:major": "mversion major",
"release": "npm run build && eval $(cat .env) webstore upload --source=dist",
"test": "NODE_ENV=test jest --config jest.config.js"
}
}