-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 2.05 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
{
"name": "testing-with-sequelize",
"version": "0.0.3",
"description": "An example repository for ",
"repository": "https://github.com/jordanell/testing-with-sequelize",
"license": "MIT",
"author": {
"name": "Jordan Ell",
"email": "[email protected]"
},
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"db:clean": "npm run db:drop && npm run db:create && npm run db:migrate",
"db:create": "babel-node ./scripts/db/create",
"db:create-migration": "babel-node ./scripts/db/createMigration",
"db:drop": "babel-node ./scripts/db/drop",
"db:migrate": "babel-node ./scripts/db/migrate",
"db:rollback": "babel-node ./scripts/db/rollback",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "NODE_ENV=test npm run db:migrate",
"test": "NODE_ENV=test mocha",
"test:coverage": "NODE_ENV=test nyc mocha",
"test:report": "nyc report --reporter=text-summary"
},
"dependencies": {
"auto-parse": "1.5.1",
"babel-core": "6.26.3",
"child-process-promise": "2.2.1",
"dotenv": "6.1.0",
"lodash": "4.17.21",
"pg": "7.6.1",
"pg-hstore": "2.3.2",
"query-string": "6.2.0",
"sequelize": "5.21.13",
"sequelize-cli": "5.5.1",
"whatwg-url": "7.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "10.0.1",
"babel-plugin-istanbul": "5.1.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-root-import": "6.1.0",
"babel-plugin-syntax-object-rest-spread": "6.13.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-register": "6.26.0",
"braces": "2.3.1",
"chai": "4.2.0",
"eslint": "5.9.0",
"eslint-config-riipen": "2.0.1",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"faker": "4.1.0",
"kind-of": "6.0.3",
"mocha": "8.2.1",
"nyc": "15.1.0",
"require-directory": "2.1.1",
"sinon": "7.1.1"
}
}