-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "pellicola",
"version": "1.0.0",
"description": "A movie review application",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"start:mobile": "cd mobile && npm start",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:mobile": "cd mobile && npm run build",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"test:mobile": "cd mobile && npm test",
"build": "npm install && npm run build:backend && npm run build:frontend",
"start": "concurrently -n backend,frontend -c red,green \"npm run start:backend\" \"npm run start:frontend\"",
"start-dev": "concurrently -n backend,frontend,mobile -c red,green,blue \"npm run start:backend\" \"npm run start:frontend\" \"npm run start:mobile\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TulioHRC/pellicola.git"
},
"keywords": [
"web",
"fullstack",
"frontend",
"backend",
"mobile"
],
"author": "Tulio",
"license": "ISC",
"bugs": {
"url": "https://github.com/TulioHRC/pellicola/issues"
},
"homepage": "https://github.com/TulioHRC/pellicola#readme",
"dependencies": {
"@types/express": "^4.17.21",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@nestjs/cli": "10.2.1",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"concurrently": "^8.2.2"
}
}