-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "lifx-web-ui",
"version": "1.0.1",
"description": "Nuxt.js project",
"author": "ra100 <git@ra100.net>",
"private": true,
"scripts": {
"dev": "NODE_ENV=devel node --experimental-modules server/index.mjs",
"build": "nuxt build",
"start": "node --experimental-modules server/index.mjs",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"prepare": "npm run snyk-protect",
"snyk-protect": "snyk-protect"
},
"dependencies": {
"body-parser": "^1.20.4",
"express": "^4.22.0",
"node-lifx": "^0.8.0",
"nuxt": "^3.0.0",
"prom-client": "^14.1.1",
"prometheus-wrapper": "git+https://github.com/ra100/nodejs-prometheus-wrapper.git#90209672506147162e82be094a20446d6926d137",
"vue": "^3.2.45",
"vuex": "^4.1.0",
"@snyk/protect": "latest"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"prettier": "^2.8.1",
"vue-eslint-parser": "^9.1.0"
}
}