-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
109 lines (109 loc) · 3.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "gstore-blog-demo",
"version": "1.1.0",
"description": "Demo Blog Application on Google App Engine Flexible Environment",
"keywords": [
"nodejs",
"google cloud",
"app engine",
"google-cloud",
"gstore-node"
],
"author": "Sébastien Loix",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/sebelga/blog-app-googlecloud"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"local-datastore": "gcloud beta emulators datastore start --data-dir=./local-datastore",
"build": "npm run clean && npm run build-client && npm run build-server",
"build-client": "NODE_ENV=production node ./node_modules/.bin/webpack",
"build-server": "npm run build-ts",
"build-ts": "tsc",
"clean": "rimraf dist",
"deploy": "node ./scripts/deploy",
"test": "npm test",
"predeploy": "npm run build",
"promote": "node ./scripts/promote",
"serve": "node dist/index.js",
"serve-debug": "nodemon --inspect dist/index.js",
"start": "npm run serve",
"start-local": "npm run clean && npm run build-ts && npm run watch",
"watch": "concurrently -k -p \"[{name}]\" -n \"Client,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-js\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-js": "webpack --watch --progress --colors",
"watch-ts": "tsc -w",
"watch-node": "nodemon -L --delay 300ms dist/index.js -w ./dist --ignore src/ --ignore public/ "
},
"dependencies": {
"@google-cloud/storage": "^1.7.0",
"arrify": "^1.0.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"boom": "7.2.0",
"bulma": "0.7.1",
"compression": "1.7.3",
"dataloader": "^1.4.0",
"date-fns": "^1.29.0",
"dotenv": "^6.0.0",
"es6-docready": "^1.0.0",
"express": "^4.16.3",
"gstore-node": "^4.3.1",
"is": "^3.2.1",
"joi": "^13.4.0",
"marked": "^0.4.0",
"multer": "^1.3.1",
"nconf": "^0.10.0",
"pug": "^2.0.3",
"ramda": "^0.25.0",
"simplemde": "1.11.2",
"string": "^3.3.3",
"winston": "^3.0.0",
"winston-express": "^0.1.1"
},
"devDependencies": {
"@types/arrify": "^1.0.4",
"@types/async": "^2.0.49",
"@types/boom": "^7.2.0",
"@types/compression": "^0.0.36",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/google-cloud__datastore": "^1.3.3",
"@types/google-cloud__storage": "^1.7.1",
"@types/is": "^0.0.20",
"@types/joi": "^13.4.0",
"@types/marked": "^0.4.0",
"@types/multer": "^1.3.7",
"@types/node": "^10.5.3",
"@types/ramda": "^0.25.35",
"@types/shelljs": "^0.8.0",
"assets-webpack-plugin": "^3.8.4",
"autoprefixer": "^9.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"concurrently": "^3.6.1",
"css-loader": "^1.0.0",
"mini-css-extract-plugin": "0.4.1",
"node-sass": "^4.9.2",
"nodemon": "^1.18.3",
"postcss-loader": "^2.1.6",
"prettier": "1.13.7",
"replace-in-file": "^3.4.0",
"resolve-url-loader": "2.3.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"style-loader": "0.21.0",
"ts-node": "^7.0.0",
"typescript": "^3.0.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"yargs": "^12.0.2"
}
}