-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1 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
{
"name": "feature-hub-vue",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn build:feature-app && yarn build:integrator",
"build:feature-app": "webpack --config feature-app.webpack.config.js",
"build:integrator": "webpack --config integrator.webpack.config.js",
"format": "prettier --write '**/*.{js,json,md,ts,tsx,vue,yml}'",
"lint": "tslint --config tslint.json --project tsconfig.json --format verbose"
},
"dependencies": {
"@feature-hub/core": "^1.3.0",
"@feature-hub/dom": "^1.3.0",
"@feature-hub/module-loader-amd": "^1.3.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@types/webpack": "^4.4.26",
"css-loader": "^2.1.1",
"serve": "^10.1.2",
"ts-config": "^20.9.0",
"ts-loader": "^5.3.3",
"tslint": "^5.14.0",
"typescript": "^3.3.4000",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}