-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.8 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": "root-access",
"version": "1.0.0",
"description": "Une web-app permettant la gestion des membres, des projets, et l'intégration avec GitHub, avec des fonctionnalités d'accès FTP, SFTP et SSH.",
"main": "entry.js",
"scripts": {
"back:dev": "nodemon --files server/index.ts",
"back:serve": "ts-node --files server/index.ts",
"back:build": "tsup server/index.ts --dts --minify --format cjs --target node14 --outDir build/server",
"front:dev": "cd client && vite",
"front:serve": "cd client && vite preview",
"front:build": "cd client && vite build --emptyOutDir",
"build": "env-cmd npm run back:build && env-cmd npm run front:build",
"start": "env-cmd node build/server/index.js"
},
"author": "Kan-à-Pesh",
"license": "ISC",
"private": true,
"dependencies": {
"@solidjs/router": "^0.8.2",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"ftpd": "^0.2.16",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.2",
"nodemailer": "^6.9.3",
"path": "^0.12.7",
"solid-heroicons": "^3.2.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/ftpd": "^0.2.35",
"@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.5",
"@types/nodemailer": "^6.4.8",
"nodemon": "^2.0.22",
"solid-js": "^1.7.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^6.7.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-solid": "^2.7.0"
}
}