-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "prefix-server",
"version": "2023.12.9",
"license": "AGPLv3",
"description": "RDF prefix / namespaces resolution",
"author": "Zazuko GmbH",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue .",
"precommit": "npm run lint",
"dev": "nuxt",
"build": "nuxt build",
"build:modern": "nuxt build --modern=server",
"build-data": "DEBUG=prefix-server node ./build-resources",
"start": "nuxt-start",
"generate": "nuxt generate",
"e2e:open": "cypress open",
"e2e:test": "cypress run"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@rdfjs/data-model": "^1.3.4",
"@rdfjs/to-ntriples": "^2",
"@zazuko/vocabularies": "^2.1.1",
"debug": "^4.3.4",
"express": "^4.19.2",
"express-preconditions": "^1.0.5",
"feather-icon-literals": "^1.0.0-rc.11",
"fuse.js": "^6.6.2",
"lodash": "^4.17.21",
"middleware-async": "^1.3.6",
"nuxt-start": "^2.15.8",
"query-string": "^7.1.1",
"string-hash": "^1.1.3",
"v-clipboard": "^2.2.3",
"xss": "^1.0.14"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "^3.0.2",
"@cypress/snapshot": "^2.1.7",
"@nuxtjs/eslint-config": "^6.0.1",
"cypress": "^8.7.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-unicorn": "^35.0.0",
"eslint-plugin-vue": "^7.20.0",
"nuxt": "^2.16.3",
"sass": "^1.55.0",
"sass-loader": "^10.3.1"
},
"engines": {
"node": ">=14",
"npm": ">=7"
}
}