-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "camperbot",
"version": "1.3.0",
"description": "freeCodeCamp montreal discord bot",
"main": "src/app.js",
"repository": "[email protected]:sirMerr/camperbot.git",
"author": "Tiffany Le-Nguyen <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src -d build",
"start": "yarn build && node build/app.js",
"start:watch":
"nodemon --exec 'yarn build && node build/app.js' --watch src --ignore build",
"test": "NODE_ENV=test yarn cleanup && jest",
"precommit": "pretty-quick --staged",
"migrate-up":
"NODE_PATH=build node -r libs/dotenv node_modules/.bin/db-migrate up",
"migrate-down":
"NODE_PATH=build node -r libs/dotenv node_modules/.bin/db-migrate down",
"migrate-reset":
"NODE_PATH=build node -r libs/dotenv node_modules/.bin/db-migrate reset",
"cleanup": "yarn migrate-reset && yarn migrate-up"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-inline-json-import": "^0.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"db-migrate": "^0.11.1",
"db-migrate-pg": "^0.4.0",
"discord.js": "^11.3.2",
"dotenv": "^5.0.1",
"knex": "^0.14.6",
"lodash": "^4.17.10",
"pg-promise": "^8.4.0",
"sql-template-strings": "^2.2.2"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.4.3",
"nodemon": "^1.17.3",
"prettier": "1.12.1",
"pretty-quick": "^1.4.1"
}
}