forked from ahnwarez/student-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "i-visualise-commits",
"version": "0.0.1",
"private": true,
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "run-p dev:*",
"dev:server": "tsx watch src/index.ts",
"dev:css": "tailwind -i ./src/styles/input.css -o ./public/output.css --watch",
"build": "run-s build:*",
"build:prisma": "prisma generate",
"build:css": "tailwind -i ./src/styles/input.css -o ./public/output.css",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"delete": "tsx src/script.ts",
"format": "prettier --plugin-search-dir . --write .",
"new:cohort": "tsx src/script.ts"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/express": "^4.17.17",
"@types/node": "^20.4.9",
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"dotenv": "^16.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prisma": "^4.16.2",
"tailwindcss": "^3.3.2",
"tsx": "^3.12.7",
"typescript": "^5.0.0"
},
"dependencies": {
"@astrojs/mdx": "^0.19.7",
"@astrojs/rss": "^2.4.3",
"@astrojs/sitemap": "^2.0.1",
"@astrojs/tailwind": "^4.0.0",
"@astrojs/ts-plugin": "^1.1.1",
"@prisma/client": "4.16.2",
"astro": "^2.9.4",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.21.4"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}