-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 KB
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": "version-builder",
"version": "0.1.2",
"description": "Do not repeat build number",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"nodemon": "nodemon --exec babel-node ./src/index.js --presets stage-2",
"start": "node dist/index.js --dev",
"build": "babel src -d dist --presets stage-2 --copy-files",
"lint": "./node_modules/.bin/eslint src/",
"postinstall": "npm run build"
},
"author": "Lucas Monteiro",
"license": "ISC",
"dependencies": {
"node-fetch": "^2.6.1",
"pg": "^8.3.3",
"server": "^1.0.30"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4"
}
}