-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.72 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.72 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "wildfirecheck",
"version": "0.3.0",
"engines": {
"node": "20.x"
},
"gcp-build": "",
"homepage": ".",
"dependencies": {
"@google-cloud/compute": "^3.7.0",
"@google-cloud/pubsub": "^3.2.1",
"@google-cloud/storage": "^6.9.0",
"body-parser": "^1.20.1",
"chai": "^4.3.7",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"googleapis": "^110.0.0",
"helmet": "^6.0.1",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"luxon": "^3.2.1",
"node-fetch": "^2.6.6",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"react": "^16.14.0",
"react-datetime-picker": "^3.5.0",
"react-dom": "^16.14.0",
"react-dropdown-select": "^4.9.3",
"react-resize-observer": "^1.1.1",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.6.2",
"react-scripts": "^5.0.1",
"react-web-notification": "^0.8.0",
"sqlite3": "^5.1.4",
"winston": "^3.8.2"
},
"scripts": {
"gcp-build": "",
"start": "node dist/server-main.js",
"dev": "npm run dev-server & ; npm run dev-client",
"npx dev-client": "REACT_APP_BE_PORT=3141 npx react-scripts -r @cypress/instrument-cra start",
"dev-client": "REACT_APP_BE_PORT=3141 react-scripts -r @cypress/instrument-cra start",
"dev-server": "NODE_ENV=development ts-node server-main.ts",
"build": "tsc && npx react-scripts build",
"// Use `npm test` for cicd pipelines": "a",
"test": "cross-env CI=true NODE_ENV=development npm run test-all",
"// Use `npm run test-all` for local development": "a",
"test-all": "npm run test-client-components && npm run test-client-modules && npm run test-server",
"test-client-components": "react-scripts test --passWithNoTests --watchAll=false",
"test-client-modules": "mocha 'test/**/*.test.mjs'",
"test-server": "tsc && nyc mocha --exit dist/server-src/test",
"eject": "react-scripts eject",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"*.jsx"
],
"rules": {
"no-sequences": "off"
}
},
{
"files": [
"src/v2/**/*.js",
"src/v2/**/*.jsx",
"src/v2/**/*.mjs"
],
"rules": {
"no-console": "warn"
}
}
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@cypress/code-coverage": "^3.10.3",
"@cypress/instrument-cra": "^1.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^7.2.1",
"@types/express": "^4.17.15",
"@types/node": "^18.17.0",
"@types/passport": "^1.0.11",
"@types/passport-facebook": "^2.1.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-local": "^1.0.35",
"@types/pg": "^8.6.6",
"@types/sqlite3": "^3.1.8",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"cypress": "^12.9.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"typescript": "^4.9.4",
"prettier": "^2.8.8",
"eslint": "^8.38.0"
}
}