-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 959 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
35
36
37
38
39
40
41
42
{
"name": "orgamix",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/server.js",
"build": "rimraf ./build && tsc",
"deploy": "gcloud app deploy"
},
"repository": {
"type": "git",
"url": "orgamix"
},
"keywords": [
"indoor",
"gardening",
"farming",
"node",
"appengine"
],
"author": "Michael Gerzon",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@types/express": "^4.17.8",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-plugin-react": "^7.21.3",
"rimraf": "^3.0.2"
},
"dependencies": {
"@google-cloud/datastore": "^6.1.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"typescript": "^4.0.3"
}
}