-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.4 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
{
"name": "leo",
"version": "1.0.0",
"description": "JS project",
"main": "index.js",
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
],
"scripts": {
"serve": "NODE_ENV=development webpack serve --config webpack.dev.js ",
"watch": "NODE_ENV=development webpack --watch --config webpack.dev.js ",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"start": "concurrently \"npm run serve\" \"npm run watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/yangc95/Leo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yangc95/Leo/issues"
},
"homepage": "https://github.com/yangc95/Leo#readme",
"dependencies": {
"concurrently": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.13.12",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.0",
"extract-loader": "^4.0.3",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.4.0",
"postcss-loader": "^4.2.0",
"resolve-url-loader": "^3.1.2",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.7.3"
}
}