-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "dependabot-metadata-test",
"version": "1.0.0",
"description": "Basic CRUD app with React/TS frontend and Express/TS backend",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev:server": "PORT=6017 ts-node src/index.ts",
"dev:client": "PORT=6016 parcel src/client/index.html --dist-dir dist/client",
"dev": "concurrently \"yarn dev:server\" \"yarn dev:client\"",
"build": "parcel build src/client/index.html --dist-dir dist/client"
},
"keywords": ["crud", "typescript", "react", "express"],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "0.16.2",
"dotenv": "^16.4.7",
"@sentry/react": "^8.51.0",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@octokit/rest": "^20.1.0"
},
"devDependencies": {
"@types/node": "^22.13.5",
"@types/express": "^4.17.21",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"concurrently": "^8.2.2",
"parcel": "^2.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}