-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
36
{
"name": "tas-node",
"version": "1.0.0",
"engines": {
"node": "16.x"
},
"main": "webpack.config.js",
"scripts": {
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint src --ext js --no-ignore --fix && npm run format",
"checklint": "eslint src --ext js --no-ignore && prettier --check \"src/**/*.js\"",
"build": "webpack",
"start": "npm-run-all --parallel watch:build watch:server",
"watch:build": "webpack --watch",
"watch:server": "nodemon --inspect=\"9229\" \"./build/bundle.js\" --watch \"./build\" "
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"prettier": "^2.3.2",
"regenerator-runtime": "^0.12.1",
"webpack": "^3.8.1"
},
"dependencies": {
"express": "^4.17.1",
"octokit": "^1.5.0"
}
}