-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "demo",
"version": "1.0.0",
"description": "",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"start": "cross-env NODE_ENV=local BUILD_ENV=local webpack-dev-server --config build/webpack.dev.conf.js",
"prebuild:prod": "rimraf ./dist",
"build:dev": "cross-env NODE_ENV=development BUILD_ENV=dev node build/build.js",
"build:test": "cross-env NODE_ENV=development BUILD_ENV=test node build/build.js",
"build:prod": "cross-env NODE_ENV=production BUILD_ENV=prod node build/build.js",
"lint": "eslint --ext .js --ext .jsx --ext .vue src/",
"lint:fix": "eslint --fix --ext .js --ext .jsx --ext .vue src/",
"server": "a06-server kill all && a06-server start -r ./dist -z -c",
"promise-test": "promises-aplus-tests src/myPromise"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xg-a06/lib_tpl.git"
},
"author": "xg_jser@163.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/xg-a06/lib_tpl/issues"
},
"homepage": "https://github.com/xg-a06/lib_tpl#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-class-static-block": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-do-expressions": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/plugin-proposal-partial-application": "^7.12.13",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-proposal-private-property-in-object": "^7.13.0",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/runtime-corejs2": "^7.13.10",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"happypack": "^5.0.1",
"html-webpack-plugin": "^5.3.1",
"prettier": "^2.2.1",
"progress-bar-webpack-plugin": "^2.1.0",
"promises-aplus-tests": "^2.1.2",
"rimraf": "^3.0.2",
"webpack": "^5.25.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
}
}