-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 1.05 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
{
"name": "fling-server",
"version": "0.1.0",
"description": "a flingapp backend with postgraphQL",
"main": "app.js",
"repository": "[email protected]:ortonomy/fling-server.git",
"author": "ortonomy <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"cors": "^2.8.4",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"pg": "^7.4.1",
"postgraphile": "^4.0.0-alpha2.33",
"sparkpost": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"nodemon": "^1.15.0"
},
"scripts": {
"start": "pm2 flush && pm2 start pm2.config.js",
"kill-dev": "pm2 flush && pm2 kill",
"build": "babel lib -d dist --presets env",
"serve": "node dist/app.js",
"start:cli-dev": "postgraphql --host 127.0.0.1 --watch --connection postgres://flingapp_postgraphql:YourFlingAppPassword@localhost:5432/fling --schema flingapp --default-role flingapp_anonymous --token flingapp.jwt_token --secret develop.DEVELOP"
}
}