-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.33 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "art.me",
"version": "0.0.0",
"description": "The Art Social Media .",
"main": "index.js",
"scripts": {
"server": "ts-node-esm --esm -P ./tsconfig.script.json ./src/shared/infra/http/app.ts",
"server:dev": "nodemon",
"server:build": "NODE_ENV=production npm run server",
"db:container": "ts-node -P ./tsconfig.script.json -e 'import(\"./scripts/prepareContainers\").then(m=>m.default())' ",
"db:base": "ts-node -P ./tsconfig.script.json -e 'import(\"./scripts/prepareDbBase\").then(m=>m.default())' ",
"db:prepare": "npm run db:container&&echo 'wait moment...⌛️'; sleep 5 && npm run db:base",
"next:dev": "next dev ./public/app",
"next:build": "next build ./public/app"
},
"repository": {
"type": "git",
"url": "git@syaw0.github.com:Syaw0/Art.me.git"
},
"keywords": [
"art",
"Art",
"nodejs",
"js",
"javascript",
"react",
"ddd",
"redux"
],
"author": {
"email": "siamhb7@protonmail.com",
"name": "syaw0"
},
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.16",
"@violetui/button": "^0.1.0-beta",
"axios": "^1.3.5",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^9.0.0",
"mariadb": "^3.1.1",
"mongodb": "^5.2.0",
"next": "13.2.4",
"nodemailer": "^6.9.1",
"notistack": "^3.0.1",
"rand-token": "^1.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5",
"redis": "^4.6.5",
"typescript": "5.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "18.15.11",
"@types/nodemailer": "^6.4.7",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"@types/uuid": "^9.0.1",
"nodemon": "^2.0.22"
},
"nodemonConfig": {
"watch": [
"./src/**/*"
],
"ext": ".ts",
"exec": "npm run server"
}
}