-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 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
{
"name": "github-actions-course",
"version": "0.1.0",
"description": "Actions, beyond the CI / CD without leaving Github",
"main": "app.js",
"repository": "[email protected]:ajmasia/github-actions-course.git",
"author": "Antonio José Masiá <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon --exec babel-node ./src/app.js",
"build": "babel ./src/app.js -d ./build",
"test": "jest ./test/*",
"lint": "eslint src --color",
"format": "prettier --write 'src/**/*.js'"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}