-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "covid-stats-ssml",
"author": "Andre Landgraf",
"description": "",
"sideEffects": false,
"scripts": {
"lint": "eslint .",
"build": "remix build",
"dev": "remix build && run-p dev:*",
"dev:node": "cross-env NODE_ENV=development nodemon ./build/index.js --watch ./build/index.js",
"dev:remix": "remix watch",
"postinstall": "remix setup node",
"start": "cross-env NODE_ENV=production node ./build/index.js"
},
"dependencies": {
"@remix-run/node": "^1.3.2",
"@remix-run/react": "^1.3.2",
"body-parser": "^1.19.2",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ssml-dom": "^2.0.0",
"remix": "^1.3.2",
"ssml-dom": "^0.0.4",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.3.2",
"@remix-run/eslint-config": "^1.3.2",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}