-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "conuhacks2019",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently -k -p \"[{name}]\" -n \"Typescript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "GOOGLE_APPLICATION_CREDENTIALS=\"/Users/Anthony/Programming/green-beans/Keys/greenbeans-e18a1a92026f.json\" nodemon server/server.ts",
"watch-ts": "tsc -w",
"build-ts": "tsc",
"start-node": "ts-node server/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"watch": "server/**/*",
"ext": "ts, hbs, scss",
"execMap": {
"ts": "ts-node"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/afiorito/conuhacks2019.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/afiorito/conuhacks2019/issues"
},
"homepage": "https://github.com/afiorito/conuhacks2019#readme",
"dependencies": {
"@google-cloud/storage": "^2.3.4",
"@google-cloud/vision": "^0.24.0",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"clarifai": "^2.9.0",
"express": "^4.16.4",
"mongoose": "^5.4.7",
"multer": "^1.4.1",
"reactstrap": "^7.1.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/mongoose": "^5.3.10",
"@types/multer": "^1.3.7",
"@types/reactstrap": "^7.1.1",
"concurrently": "^4.1.0",
"nodemon": "^1.18.9",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4"
}
}