-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.43 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
{
"name": "kiwiirc-plugin-asl",
"version": "1.0.0",
"main": "./src/plugin.js",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"dev": "webpack-dev-server",
"lint:eslint": "eslint --ext .js,.vue ./",
"lint:stylelint": "stylelint \"src/**/*.{vue,htm,html,css,sss,less,scss}\"",
"lint": "npm run lint:eslint && npm run lint:stylelint"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"babel-eslint": "^10.1.0",
"babel-loader": "8.2.2",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"exports-loader": "^0.7.0",
"ip-regex": "2.1.0",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"style-loader": "^1.3.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^20.0.0",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.13",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}