-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
43 lines (43 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
39
40
41
42
43
{
"name": "cloudquery",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"sf": "parcel frontend/index.html --out-dir public",
"sb": "nodemon backend/index.js",
"lint": "eslint ./backend/*.js ./frontend/*.jsx",
"buildFrontend": "rm -rf ./public && NODE_ENV=production && parcel build ./frontend/index.html --out-dir ./public --no-cache --no-source-maps --public-url ./public",
"build": "npm run buildFrontend && npm prune --production",
"start": "NODE_ENV=production && node backend/index.js"
},
"keywords": [],
"author": "timqian",
"license": "GPLv3",
"dependencies": {
"@serverless-chrome/lambda": "^1.0.0-55",
"chrome-remote-interface": "^0.26.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-rate-limit": "^3.4.0"
},
"devDependencies": {
"@medv/finder": "^1.1.1",
"axios": "^0.18.0",
"babel-eslint": "^8.2.1",
"chrome-launcher": "^0.10.5",
"cssnano": "^4.1.10",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.6.0",
"nodemon": "^1.18.10",
"parcel": "^1.12.3",
"react": "^16.8.5",
"react-dom": "^16.8.5"
},
"browserslist": [
"since 2017-06"
]
}