-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 876 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
{
"name": "metaface",
"version": "1.0.0",
"description": "A face detection application using Clarifai API using React and Express",
"repository": {
"type": "git",
"url": "git+https://github.com/gsbakshi/metaface.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gsbakshi/metaface/issues"
},
"homepage": "https://github.com/gsbakshi/metaface#readme",
"scripts": {
"client": "cd client && npm start",
"server": "cd server && npm start",
"build": "cd client && npm run build",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"test": "snyk test"
},
"devDependencies": {
"concurrently": "^6.2.1",
"snyk": "^1.720.0"
}
}