This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.17 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "coli-rich",
"version": "0.0.1",
"type": "module",
"description": "PICA catalog enrichment via authority file mappings",
"main": "server.js",
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm:express:serve\" \"npm:vue:serve\"",
"start": "NODE_ENV=production nodemon --es-module-specifier-resolution=node server.js",
"express:serve": "NODE_ENV=development nodemon --es-module-specifier-resolution=node server.js",
"vue:serve": "vue-cli-service serve",
"build": "vue-cli-service build --no-clean",
"lint": "eslint --fix './**/*.js'; npm run lint:vue",
"lint:vue": "vue-cli-service lint --fix vue/**/*.vue",
"lint-staged": "lint-staged",
"test": "mocha --recursive"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.vue": "vue-cli-service lint"
},
"pre-commit": [
"lint-staged",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gbv/coli-rich.git"
},
"engines": {
"node": "14"
},
"dependencies": {
"axios": "^0.20.0",
"cocoda-sdk": "^1.0.6",
"codemirror": "^5.58.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jskos-tools": "^1.0.14",
"lodash": "^4.17.20",
"nunjucks": "^3.2.2",
"pica-editor": "^0.5.0",
"vue": "^3.0.4",
"vue-router": "^4.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/compiler-sfc": "^3.0.4",
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.15.0",
"eslint-config-gbv": "^1.0.1",
"eslint-plugin-vue": "^7.2.0",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"mocha-eslint": "^6.0.0",
"nodemon": "^2.0.6",
"pre-commit": "^1.2.2"
},
"vue": {
"publicPath": "http://localhost:8123/",
"devServer": {
"port": 8123,
"progress": false,
"headers": {
"Access-Control-Allow-Origin": "*"
}
},
"pages": {
"app": "vue/main.js"
},
"css": {
"extract": false
},
"runtimeCompiler": true,
"filenameHashing": false
},
"nodemonConfig": {
"ignore": [
"test/*",
"vue/*"
]
}
}