-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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": "a-plugin",
"version": "0.0.1",
"description": "native javascript web plug-in lib",
"main": "index.js",
"scripts": {
"dev": "npx webpack serve --config webpack/dev.config.js --open --progress",
"build": "npx webpack --config webpack/prod.config.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whalesink/a-plugin.git"
},
"author": "whalesink",
"license": "ISC",
"bugs": {
"url": "https://github.com/whalesink/a-plugin/issues"
},
"homepage": "https://github.com/whalesink/a-plugin#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.15.0",
"art-template": "^4.13.2",
"art-template-loader": "^1.4.3",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"cssnano": "^5.0.7",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^6.0.1",
"postcss-loader": "^6.1.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"promise-polyfill": "^8.2.0"
}
}