-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
42
43
44
45
46
{
"name": "project-packages-ui",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"build": "NODE_ENV=\"production\" webpack",
"build:dev": "webpack --watch",
"start": "webpack --watch",
"lint": "eslint Resources/Private/App/src/",
"precommit": "npm run lint"
},
"author": "",
"license": "ISC",
"dependencies": {
"vue-router": "^3.5.3",
"vue-select": "^2.5.1"
},
"pre-commit": {
"run": [
"precommit"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"css-loader": "^6.5.1",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"pre-commit": "^1.2.2",
"sass": "^1.48.0",
"sass-loader": "^12.4.0",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
"typescript": "~4.2",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-loader": "^15.9.8",
"vue-property-decorator": "^9.1.2",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
}
}