-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.62 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
{
"name": "maco-bot",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test:watch": "jest --watch",
"test": "jest",
"dev": "PORT=3001 nodemon ./bin/www",
"foreman-dev": "nf start --procfile Procfile.development",
"migrate-all-rollback": "NODE_ENV=test knex migrate:rollback && knex migrate:rollback",
"migrate-all-latest": "NODE_ENV=test knex migrate:latest && knex migrate:latest",
"migrate-all-redo": "npm run migrate-all-rollback && npm run migrate-all-latest",
"heroku-postbuild": "node_modules/.bin/knex migrate:latest && cd client/ && npm install && npm run build",
"heroku-update-prod-env-vars": "sed 's/#[^(\"|'')]*$//;s/^#.*$//' .env.production | xargs heroku config:set --app=maco-bot"
},
"dependencies": {
"ajv": "^6.10.2",
"ajv-keywords": "^3.1.0",
"body-parser": "~1.18.2",
"config": "^1.29.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.15.5",
"express-jwt": "^5.3.1",
"jwks-rsa": "^1.2.1",
"knex": "^0.19.3",
"morgan": "~1.9.1",
"objection": "^0.9.4",
"pg": "^7.4.1",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/supertest": "^2.0.4",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.1.0",
"foreman": "^2.0.0",
"jest": "^21.2.1",
"jest-extended": "^0.6.0",
"jsonwebtoken": "latest",
"keypair": "^1.0.1",
"nock": "^9.1.6",
"node-pg-migrate": "^2.17.0",
"nodemon": "^1.19.2",
"pem-jwk": "^1.5.1",
"postcss-sass": "^0.2.0",
"standard": "^10.0.3",
"stylelint": "^8.3.1",
"stylelint-config-standard": "^18.3.0",
"supertest": "^3.0.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"eslintConfig": {
"extends": [
"standard",
"react-app"
],
"env": {
"jest": true
}
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/client/",
"<rootDir>/tmp/"
],
"setupTestFrameworkScriptFile": "jest-extended"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
]
}