-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.6 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.6 KB
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
{
"name": "nestjs_react_mobx_starter",
"version": "0.0.1",
"description": "Full-stack project starter built on top of Nest.js (http api server), React.js (client render), MobX (state management), Webpack (builder)",
"author": "romanesco.fin@gmail.com",
"private": false,
"license": "MIT",
"scripts": {
"client:dev": "rm -rf dist/client && webpack --watch",
"client:build": "rm -rf dist/client && webpack --progress --node-env production",
"server:dev": "nest start --path server/tsconfig.json --watch",
"server:build": "nest build --path server/tsconfig.build.json",
"server:prod": "node dist/server/main",
"test:unit:client": "jest --config ./jest.client.ts",
"test:unit:server": "jest --config ./jest.server.ts",
"test:unit:client:watch": "npm run test:unit:client -- --watch",
"test:unit:server:watch": "npm run test:unit:server -- --watch",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npm run test:e2e -- --ui"
},
"dependencies": {
"@faker-js/faker": "^9.0.3",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/serve-static": "^4.0.2",
"crypto-js": "^4.2.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@playwright/test": "^1.48.1",
"@testing-library/jest-dom": "^6.6.1",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.17",
"@types/html-webpack-plugin": "^3.2.9",
"@types/jest": "^29.5.2",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/node": "^20.3.1",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.2",
"@types/webpack": "^5.28.5",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"mobx": "^6.13.3",
"mobx-observable-history": "^2.0.3",
"mobx-react": "^9.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"source-map-support": "^0.5.21",
"style-loader": "^4.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}