-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.28 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
110
111
112
113
114
115
{
"name": "authentication-api",
"version": "1.0.0",
"private": false,
"description": "an authentication api",
"homepage": "https://github.com/sgraham785/authentication-api",
"author": {
"name": "Sean Graham",
"url": "https://github.com/sgraham785"
},
"repository": {
"type": "git",
"url": "git://github.com/sgraham785/authentication-api.git"
},
"bugs": {
"url": "https://github.com/sgraham785/authentication-api/issues"
},
"license": "MIT",
"scripts": {
"start": "node ./bin/www",
"build": "babel ./src -d ./dist --copy-files",
"prebuild": "rm -rf dist/*",
"dev": "node ./bin/www",
"predev": "./scripts/wait-for-it.sh -h postgres -p 5432 && npm run migrate:dev",
"faker": "babel-node database/faker",
"migrate:dev": "flyway -X -configFile=database/migrate.dev.conf migrate",
"migrate:test": "flyway -X -configFile=database/migrate.test.conf migrate",
"seed": "flyway -X -configFile=database/seed.conf migrate",
"pretest": "./scripts/wait-for-it.sh -h test-postgres -p 5432 && npm run migrate:test",
"test": "./scripts/wait-for-it.sh -h test-api -p 8443 && ava --verbose",
"test:local": "OSX=true ava --verbose",
"test:watch": "ava --verbose --watch",
"nsp": "nsp check",
"cleancode": "prettier --no-semi --single-quote --write 'src/**/*.js' && standard --fix",
"rmrf-npmi": "rm -rf node_modules && npm i"
},
"dependencies": {
"bcryptjs-then": "^1.0.1",
"body-parser": "^1.17.2",
"bookshelf": "^0.10.3",
"bookshelf-cascade-delete": "^2.0.1",
"bookshelf-modelbase": "^2.10.4",
"bookshelf-paranoia": "^0.11.0",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"flywaydb-cli": "^0.5.0",
"forever-monitor": "^1.7.1",
"glob": "^7.1.2",
"helmet": "^3.6.1",
"joi": "^10.6.0",
"jsonwebtoken": "^7.4.1",
"jwt-redis-session": "^1.0.5",
"knex": "^0.12.0",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"node-fetch": "^1.7.1",
"nodemailer": "^4.0.1",
"oy-vey": "^0.9.0",
"passport": "~0.3.2",
"passport-github": "^1.1.0",
"passport-google-oauth": "~1.0.0",
"passport-local": "~1.0.0",
"pg": "^6.2.4",
"prop-types": "^15.5.10",
"pug": "^2.0.0-rc.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"redis": "^2.7.1",
"serve-favicon": "^2.4.3",
"uuid": "^3.1.0"
},
"devDependencies": {
"@ava/babel-preset-stage-4": "^1.1.0",
"@ava/babel-preset-transform-test-files": "^3.0.0",
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"chance": "^1.0.10",
"debug": "^2.6.8",
"jshint": "^2.9.4",
"json-sql": "^0.3.11",
"knex-cleaner": "^1.1.3",
"nsp": "^2.6.3",
"prettier": "^1.4.4",
"standard": "^10.0.2",
"swagger-jsdoc": "^1.9.4",
"winston": "^2.3.1"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react",
"@ava/stage-4",
"@ava/transform-test-files"
],
"plugins": []
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"source": [
"src/**/*.{js,jsx}",
"!dist/**/*"
],
"babel": "inherit"
}
}