-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "Anker",
"version": "1.0.0",
"description": "A simple app for creating bio links",
"main": "index.js",
"scripts": {
"devServer": "webpack serve",
"watch": "webpack -w",
"bundle": "webpack --config webpack.config.js --no-devtool --env EnvMode=prod",
"copy-data": "cp data.json dist/",
"copy-dist": "cp -r dist/* anker-demo-dist/",
"start": "npm-run-all --parallel devServer watch",
"build": "npm-run-all bundle copy-data"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankerapp/anker-app.git"
},
"author": "https://github.com/0xkhan",
"license": "ISC",
"bugs": {
"url": "https://github.com/ankerapp/anker-app/issues"
},
"homepage": "https://github.com/ankerapp/anker-app#readme",
"devDependencies": {
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"file-loader": "^6.2.0",
"html-loader": "^3.1.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"terser-webpack-plugin": "^5.3.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
}
}