-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.55 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
70
71
72
73
74
75
76
{
"name": "fetchq-cron",
"organization": "marcopeg",
"version": "0.0.1",
"description": "Run smart cron jobs via REST API and WebConsole",
"main": "ssr/index.js",
"scripts": {
"___// Development Utilities //___": "",
"start": "node ssr/index.js",
"start:api": "nodemon --watch ssr ssr/index.js",
"start:app": "react-scripts start",
"start:styleguide": "styleguidist server",
"start:gitpod:api": "NODE_ENV=development CORS_ORIGIN=$(gp url 3000) nodemon --watch ssr ssr/index.js",
"start:gitpod:app": "REACT_APP_SERVER_URL=$(gp url 8080) react-scripts start",
"start:gitpod:styleguide": "HOST=$(gp url 6060) styleguidist server",
"start:docker:api": "yarn && nodemon ssr/index.js",
"start:docker:app": "yarn && react-scripts start",
"___// Testing Utilities //___": "",
"test": "npm run test:client && npm run test:unit",
"test:e2e": "./node_modules/.bin/jest --projects test/e2e --runInBand --testTimeout=10000",
"test:unit": "./node_modules/.bin/jest --projects test/unit",
"test:client": "react-scripts test --watchAll=false",
"tdd:e2e": "./node_modules/.bin/jest --projects test/e2e --runInBand --watchAll --testTimeout=10000",
"tdd:unit": "jest --projects test/unit --watchAll",
"tdd:client": "react-scripts test",
"seed": "node test/seed/index.js",
"seed:watch": "nodemon test/seed/index.js",
"___// Production Utilities //___": "",
"build": "react-scripts build"
},
"dependencies": {
"@forrestjs/hooks": "3.9.0",
"@marcopeg/deeplog": "^1.13.0",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.46",
"axios": "0.19.2",
"cron-parser": "2.13.0",
"envalid": "6.0.0",
"fastify": "2.11.0",
"fastify-cookie": "^3.6.0",
"fastify-cors": "3.0.1",
"fastify-jwt": "^1.2.1",
"fastify-static": "^2.6.0",
"fetch-resolver": "1.9.2",
"fetchq": "2.6.2",
"http-headers-validation": "^0.0.1",
"mdi-material-ui": "^6.12.0",
"ms": "^2.1.2",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.0.1",
"use-global-hook": "^0.1.12"
},
"devDependencies": {
"jest": "24.7.1",
"moment": "^2.24.0",
"nodemon": "1.18.4",
"react-styleguidist": "^11.0.1"
},
"keywords": [],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}