-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "ocean-ar-backend",
"version": "1.0.0",
"description": "API para Ocean AR hakaton por innovación virtual.",
"main": "index.js",
"scripts": {
"start": "node src/index",
"dev": "nodemon src/index",
"test": "jest",
"linter": "node ./node_modules/eslint/bin/eslint.js .",
"linter-fix": "node ./node_modules/eslint/bin/eslint.js . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/armap99/Ocean-AR-Backend.git"
},
"author": "The Crust",
"license": "ISC",
"bugs": {
"url": "https://github.com/armap99/Ocean-AR-Backend/issues"
},
"homepage": "https://github.com/armap99/Ocean-AR-Backend#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.19.0"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^26.6.0",
"nodemon": "^2.0.16"
}
}