-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 907 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 907 Bytes
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
{
"name": "git-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"w": "tsc -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^2.14.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-react-views": "^0.11.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@prisma/cli": "^2.14.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.7",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
}
}