forked from hazim-j/zeroqueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "zeroqueue",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint . && prettier --check --ignore-path ./.eslintignore '**'",
"dev": "./env.sh \"next dev -p 9376\"",
"dev:services:up": "docker-compose up -d redis db",
"dev:services:down": "docker-compose down",
"db:migrate": "./env.sh \"npx sequelize-cli db:migrate\"",
"db:seed": "./env.sh \"npx sequelize-cli db:seed:all\"",
"db:sync": "npm run db:migrate && npm run db:seed",
"build": "next build",
"start": "next start -p 9376"
},
"dependencies": {
"@hapi/iron": "6.0.0",
"ajv": "6.12.2",
"antd": "4.1.3",
"bull": "3.14.0",
"cookie": "0.4.0",
"cron-validator": "1.1.1",
"cronstrue": "1.94.0",
"lodash.capitalize": "4.2.1",
"lodash.includes": "4.3.0",
"lodash.pickby": "4.6.0",
"mariadb": "2.4.0",
"moment": "2.26.0",
"mysql2": "2.1.0",
"nanoid": "3.1.9",
"next": "9.3.5",
"next-connect": "0.6.3",
"parse-database-url": "0.3.0",
"passport": "0.4.1",
"passport-local": "1.0.0",
"pg": "8.0.3",
"pg-hstore": "2.3.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-json-view": "1.19.1",
"react-syntax-highlighter": "12.2.1",
"sequelize": "5.21.7",
"sequelize-cli": "5.5.1",
"sqlite3": "4.2.0",
"swr": "0.2.0",
"tedious": "8.3.0"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"prettier": "2.0.5"
}
}