-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 876 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 876 Bytes
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
{
"name": "wallpapers-server",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node dist/index.js --production",
"build": "tsc",
"lint": "eslint . --ext ts,js && tsc --noEmit"
},
"dependencies": {
"@google-cloud/datastore": "^1.4.1",
"@google-cloud/storage": "^1.7.0",
"graphql-yoga": "1.2.2",
"json5": "^1.0.1",
"mongodb": "^3.1.1"
},
"devDependencies": {
"@types/google-cloud__datastore": "^1.3.1",
"@types/google-cloud__storage": "^1.1.8",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.17.5",
"ts-node": "4.1.0",
"typescript": "2.7.1",
"typescript-eslint-parser": "^16.0.1"
}
}