-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 904 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 904 Bytes
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
{
"name": "another-github-badges",
"version": "1.0.0",
"description": "",
"main": "server.js",
"private": true,
"scripts": {
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js",
"lint": "eslint ./",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo"
},
"author": "Ariel Favaro <arieltainan@gmail.com>",
"license": "MIT",
"dependencies": {
"@panosoft/ramda-utils": "^0.2.8",
"axios": "^0.27.2",
"chalk": "^4.1.2",
"cron": "^2.0.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"is_js": "^0.9.0",
"jsdom": "^20.0.0",
"mysql2": "^2.3.3",
"nocache": "^3.0.4",
"node-chartist": "^1.0.5",
"sequelize": "^6.21.2"
},
"devDependencies": {
"eslint": "^8.19.0",
"nodemon": "^2.0.19",
"sequelize-cli": "^6.4.1"
}
}