-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "start-dashboard",
"version": "1.0.0",
"description": "",
"engines": {
"node": "14.x"
},
"scripts": {
"auth0:setup": "cp -n a0deploy-cli.sample.config.json a0deploy-cli.config.json || echo --- Config file already exists. Skipped copy...",
"auth0:export": "a0deploy export -c a0deploy-cli.config.json -f yaml -o auth0-export",
"auth0:import": "a0deploy import -c a0deploy-cli.config.json -i auth0-export/tenant.yaml",
"setup:hosts": "sudo -- sh -c \"echo '127.0.0.1 start-dashboard' >> /etc/hosts\"",
"setup:cert": "mkdir -p dev && openssl req -nodes -new -x509 -keyout dev/server.key -out dev/server.cert -subj '/CN=start-dashboard'",
"setup:env": "cp -n sample.env .env || echo .env file already exists. Skipping...",
"setup:blocks:prod": "cd airtable-apps/send_email && npm run setup:prod",
"setup:blocks:test": "cd airtable-apps/send_email && npm run setup:test",
"setup": "npm run setup:env && npm run setup:cert && npm run setup:hosts",
"install:server": "npm install",
"install:ui": "cd react-ui && npm install",
"install:blocks": "cd airtable-apps/send_email && npm install",
"install:all": "npm run install:server && npm run install:ui && npm run install:blocks",
"start": "node server",
"start:blocks": "cd airtable-apps/send_email && npm start",
"build": "cd react-ui/ && npm install && npm run build",
"lint": "eslint server",
"lint:all": "npm run lint && cd react-ui/ && npm run lint",
"start:ui": "cd react-ui && npm run start",
"start:server": "nodemon server",
"start:dev": "concurrently --kill-others-on-fail 'npm run start:ui' 'PORT=8080 npm run start:server'",
"start:dev:blocks": "concurrently --kill-others-on-fail 'npm run start:dev' 'npm run start:blocks'",
"start:prod": "npm run build && NODE_ENV=production npm start"
},
"dependencies": {
"@nomadiclabs/google-maps-react": "^2.0.6",
"airtable": "^0.10.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-jwt-authz": "^2.4.1",
"jwks-rsa": "^1.11.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"node-mailjet": "nomadic-labs/mailjet-apiv3-nodejs#master"
},
"devDependencies": {
"auth0-deploy-cli": "^5.3.1",
"concurrently": "^5.3.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prettier-config-standard": "^1.0.1"
},
"cacheDirectories": [
"node_modules",
"react-ui/node_modules"
],
"license": "MIT"
}