-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
{
"name": "justyou",
"version": "1.0.0",
"description": "An experimental project to test the front-end knowledge learned; the content is arbitrary, but I like it.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack ./test.js --mode development",
"startOne": "webpack ./test.js --mode development --config ./webpack.config.js",
"devServer": "webpack-dev-server --config ./webpack.config.js",
"testOne": "webpack-dev-server"
},
"keywords": [
"experimental",
"test"
],
"author": "coldqiu",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-es2017": "^7.0.0-beta.53",
"@babel/runtime": "^7.7.4",
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.5",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^2.0.2",
"html-webpack-plugin": "^3.2.0",
"postcss-loader": "^3.0.0",
"regenerator-runtime": "^0.13.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"axios": "^0.19.0"
}
}