-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.17 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
{
"name": "topia-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "NODE_ENV=test npx sequelize db:drop && NODE_ENV=test npx sequelize db:create && NODE_ENV=test npx sequelize db:migrate",
"lint": "standard | snazzy",
"format": "prettier-standard '**/*.js'",
"test": "standard | snazzy && NODE_ENV=test jest --detectOpenHandles",
"vscode-test-debug": "NODE_ENV=test npx sequelize db:drop && NODE_ENV=test npx sequelize db:create && NODE_ENV=test npx sequelize db:migrate && NODE_ENV=test node --nolazy --inspect-brk=9229 node_modules/.bin/jest --detectOpenHandles --runInBand --codeCoverage=false",
"start": "nodemon --inspect --exec babel-node index.js",
"build": "npx webpack"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"standard": "^12.0.1"
},
"dependencies": {
"@babel/preset-env": "^7.4.3",
"@hapi/good": "^8.2.0",
"@hapi/good-console": "^8.1.0",
"@hapi/good-squeeze": "^5.2.0",
"axios": "^0.18.0",
"babel-jest": "^24.7.1",
"bcrypt": "^3.0.6",
"boom": "^7.3.0",
"faker": "^4.1.0",
"form-data": "^2.3.3",
"good-file": "^6.0.1",
"hapi": "^18.1.0",
"hapi-auth-jwt2": "^8.4.0",
"hapi-swagger": "^9.4.2",
"husky": "^2.3.0",
"inert": "^5.1.3",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^8.1.7",
"mailgun-js": "^0.22.0",
"mjml": "^4.4.0-beta.2",
"pg": "^7.10.0",
"pg-hstore": "^2.3.2",
"prettier-standard": "^9.1.1",
"ramda": "^0.26.1",
"sequelize": "^5.7.5",
"sequelize-cli": "^5.4.0",
"snazzy": "^8.0.0",
"stream-to-promise": "^2.2.0",
"uuidv4": "^4.0.0",
"vision": "^5.4.4",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^1.7.2"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/truffle"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"**/*.js": [
"prettier-standard",
"git add"
]
}
}
}