-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "nodejs-es6-boilerplate",
"version": "1.0.1",
"description": "Node.js boilerplate with ES6, ESLint, and Prettier",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./src -s",
"build": "npm run clean && npm run build-babel",
"start": "nodemon src/index.js",
"format": "prettier --write \"src/**/*.js\"",
"format:check": "prettier --list-different \"src/**/*.js\"",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "eslint --fix \"src/**/*.js\""
},
"type": "module",
"repository": "github:vferdiansyah/nodejs-es6-boilerplate",
"keywords": [
"javascript",
"node",
"nodejs",
"es6",
"eslint",
"prettier",
"boilerplate"
],
"author": {
"name": "Veri Ferdiansyah",
"email": "[email protected]",
"url": "https://vferdiansyah.github.io"
},
"license": "MIT",
"bugs": "https://github.com/vferdiansyah/nodejs-es6-boilerplate/issues",
"homepage": "https://github.com/vferdiansyah/nodejs-es6-boilerplate#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.15.5",
"@babel/helper-compilation-targets": "^7.15.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.15.3",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
},
"dependencies": {
"axios": "^0.22.0",
"express": "^4.17.1",
"firebase": "^9.1.1"
}
}