-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "nuts-admin",
"version": "0.0.1",
"description": "Web application for administering identities on the Nuts node.",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --mode=production",
"watch": "webpack --mode=development --watch",
"lint": "eslint --ext .js,.vue web/src --fix"
},
"repository": {
"type": "git",
"url": "github.com/nuts-foundation/nuts-admin"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^7.0.2",
"@vue/compiler-sfc": "^3.5.13",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.31.0",
"html-webpack-plugin": "^5.6.3",
"postcss": "^8.5.1",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.15",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"vue": "^3.5.13",
"vue-router": "^4.5.0"
}
}