forked from gjovanov/facer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "facer",
"version": "1.0.0",
"description": "Facer - Realtime Face Recognition in the browser",
"author": "Goran Jovanov",
"private": true,
"scripts": {
"api": "cross-env NODE_ENV=development node api/start.js",
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production pm2 start server/index.js -i 0 --attach",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"babel-eslint": "^8.2.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^4.0.0",
"express": "^4.16.3",
"face-api.js": "^0.17.1",
"multer": "^1.4.1",
"nuxt": "^2.3.4",
"rimraf": "^2.6.2",
"sharp": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vuetify": "^1.2.4",
"webrtc-adapter": "^7.0.0"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}