forked from kamleshchandnani/rabbit-hole-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.28 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
{
"name": "rabbit-hole-github-actions",
"version": "1.0.5",
"main": "src/index.js",
"repository": "git@github.com:kamleshchandnani/rabbit-hole-github-actions.git",
"author": "kamleshchandnani <kamlesh.chandnani@gmail.com>",
"license": "MIT",
"scripts": {
"start": "yarn development",
"lint": "eslint \"src/**\"",
"test": "echo test",
"development": "STAGE=development nodemon src/index.js",
"version:bump": "npm version patch -nm \"chore(release): update version to %s\"",
"version:publish": "git push && git push --tags",
"staging:build": "STAGE=staging echo \"staging app built\"",
"staging:serve": "STAGE=staging node src/index.js",
"production:build": "STAGE=production echo \"production app built\"",
"production:serve": "STAGE=production node src/index.js"
},
"dependencies": {
"chalk": "4.0.0",
"connect-slashes": "1.4.0",
"cookie-parser": "1.4.5",
"express": "4.17.1",
"helmet": "3.22.0",
"nodemon": "2.0.3"
},
"devDependencies": {
"@semantic-release/npm": "7.0.5",
"eslint-config-kentcdodds": "14.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint": "6.8.0",
"prettier": "2.0.5",
"semantic-release": "17.0.8"
}
}