-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 908 Bytes
/
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
{
"name": "migrations",
"version": "1.0.0",
"description": "",
"scripts": {
"up": "node confirm && knex migrate:up",
"down": "node confirm && knex migrate:down",
"latest": "node confirm && knex migrate:latest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/faker": "^4.1.12",
"@types/node": "^14.0.27",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^4.1.0",
"knex": "^0.21.2",
"pg": "^8.3.0",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"uuid": "^8.3.0"
}
}