-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
31 lines (31 loc) · 1022 Bytes
/
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
{
"name": "unqueue",
"description": "Inspect HTTP requests",
"version": "1.0.0",
"main": "server/index.js",
"repository": "https://github.com/jshawl/unqueue.git",
"author": "Jesse Shawl <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node server/dist/server.js",
"lint": "eslint --max-warnings=0 client/src/components/*.jsx client/src/*.js server/*.js",
"format": "prettier --write {*,**/*}.{ts,tsx,json,css,scss}",
"format:check": "prettier --check {*,**/*}.{js,jsx,json,css,scss}",
"postinstall": "(cd server && npm install && npm run build); (cd client && npm install && npm run build)",
"heroku-postbuild": "cd client && npm run build"
},
"dependencies": {
"prettier": "^1.19.1",
"typescript": "^4.0.5"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0"
},
"engines": {
"node": "16"
}
}