-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "htmx-todomvc",
"version": "0.0.1",
"description": "htmx todomvc app with ts, express and jsx",
"main": "api/index.js",
"scripts": {
"start": "cross-env NODE_ENV=dev ts-node src/index.ts",
"dev": "nodemon --watch src --ext ts,tsx,d.ts --exec ts-node src/index.ts",
"build": "cross-env NODE_ENV=prod tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syarul/htmx-todomvc.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/syarul/htmx-todomvc/issues"
},
"homepage": "https://github.com/syarul/htmx-todomvc#readme",
"dependencies": {
"classnames": "^2.3.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"ioredis": "^5.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"requrse": "^0.1.10",
"rq-redis": "^0.0.5"
},
"peerDependencies": {
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.6.2",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}