-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "library",
"version": "1.0.0",
"description": "This is the core of a virtual library, created with NodeJS.",
"main": "index.js",
"scripts": {
"build": "babel src -d dist --source-maps",
"start": "npm run build && node dist/index.js",
"watch": "nodemon src/index.js --exec babel-node",
"lint": "standard --fix"
},
"engines": {
"node": ">=12.6.0"
},
"author": "Efrain Peralta",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"nodemon": "^1.19.1",
"standard": "^13.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"html-to-text": "^5.1.1",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sanitize-html": "^1.20.1",
"sequelize": "^5.10.2"
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}