forked from trainerbill/ps-js-training-2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "ps-js-training",
"version": "1.0.0",
"description": "Training App for PS JS 2017 Training",
"main": "dist/index.js",
"scripts": {
"test": "npm test",
"clean": "rm -rf dist",
"build": "npm run clean && babel src -d dist --copy-files",
"build:watch": "npm run clean && babel src -d dist --copy-files",
"start": "npm run build && node dist/index.js",
"start:dev": "supervisor -w src/ -- -r 'babel-register' src/index.js",
"preinstall": "npm install -g pm2 && pm2 install pm2-logrotate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trainerbill/ps-js-training.git"
},
"author": "Andrew Throener",
"license": "ISC",
"bugs": {
"url": "https://github.com/trainerbill/ps-js-training/issues"
},
"homepage": "https://github.com/trainerbill/ps-js-training#readme",
"dependencies": {
"braintree": "^2.15.0",
"connect-mongo": "^2.0.3",
"express": "^4.16.4",
"kraken-js": "^2.1.0",
"mongoose": "^5.4.17",
"paypal-classic-api": "^1.2.1",
"paypal-rest-sdk": "^1.7.1",
"supervisor": "^0.12.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/kraken-js": "^2.2.3",
"babel-cli": "^6.23.0",
"babel-preset-env": "^1.1.8"
},
"heroku-run-build-script": true
}