-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 921 Bytes
/
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
{
"name": "face-unlock-prod",
"version": "1.0.0",
"description": "Face unlock start with react-app.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"backend": "nodemon index.js",
"frontend": "npm run start --prefix client",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"keywords": [
"face-detection",
"face-unlock"
],
"author": "Mahavishnu",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"gh-pages": "^3.1.0",
"knex": "^0.21.6",
"pg": "^8.3.3"
},
"devDependencies": {
"concurrently": "^5.0.0",
"nodemon": "^2.0.4"
}
}