-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
99 lines (99 loc) · 3.05 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "fullstack-starter",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clear": "rimraf build",
"// Backend+Frontend scripts": "",
"build": "concurrently \"yarn srv:build\" \"yarn web:build\"",
"prestart": "yarn srv:build",
"start": "concurrently -c bgRed,bgBlue -n srv,web \"yarn srv:start\" \"yarn web:serve\"",
"watch": "concurrently -c bgBlack,bgBlue -n tsc,web \"yarn srv:watch\" \"yarn web:serve\"",
"start:watch": "concurrently -c bgBlack,bgRed,bgBlue -n tsc,srv,web \"yarn srv:watch\" \"yarn srv:start\" \"yarn web:serve\"",
"// Backend scripts": "",
"srv:build": "yarn tsc -p tsconfig.json",
"srv:watch": "yarn tsc -w -p tsconfig.json",
"presrv:start": "yarn srv:build",
"srv:start": "nodemon --watch build -e js build/index.js",
"// Frontend scripts": "",
"web:serve": "parcel index.html -p 4000",
"web:build": "parcel build index.html",
"// Database scripts": "",
"up": "docker-compose up -d",
"down": "docker-compose down",
"db": "yarn down || true && yarn up"
},
"keywords": [],
"author": "",
"license": "ISC",
"_moduleAliases": {
"src": "build/src"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.7.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/history": "^4.7.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^16.7.10",
"@types/passport": "^1.0.7",
"@types/passport-facebook": "^2.1.11",
"@types/passport-google-oauth20": "^2.0.9",
"@types/pino": "^7.0.5",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^8.3.4",
"@types/ws": "^7.4.0",
"concurrently": "^7.0.0",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"nodemon": "^2.0.15",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"sass": "^1.54.4",
"stream-browserify": "^3.0.0",
"typescript": "^4.7.4",
"util": "^0.12.4"
},
"dependencies": {
"@types/express-session": "^1.17.4",
"@types/react-router": "^5.1.18",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"evtstore": "^11.8.3",
"express": "^4.18.1",
"express-session": "^1.17.3",
"frisker": "^1.4.4",
"history": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^8.2.2",
"module-alias": "^2.2.2",
"mongodb": "^4.4.1",
"parcel": "^2.7.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"pino": "^8.4.0",
"pino-pretty": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"redis": "^4.0.4",
"redux-devtools-extension": "^2.13.9",
"uuid": "^8.3.2",
"ws": "^8.8.0",
"zustand": "^4.0.0"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
}
}