-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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": "@lexedwards/fullstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --mode=production",
"postbuild": "cp -r ./src/public/ ./dist/public/",
"dev": "NODE_ENV=development webpack --mode=development && node ./dist/server/main.js",
"pretest": "ts-node ./test/genPageFixtures.ts",
"test": "jest"
},
"keywords": [],
"author": "Alex Edwards <[email protected]> (https://alexedwards.co/)",
"license": "ISC",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@swc/core": "^1.2.244",
"@swc/jest": "^0.2.22",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.8",
"@types/jsdom": "^20.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"fastify-plugin": "^4.2.0",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"msw": "^0.45.0",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"regenerator-runtime": "^0.13.9",
"swc-loader": "^0.2.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"type-fest": "^2.19.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@fastify/static": "^6.5.0",
"fastify": "^4.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-router-dom": "^6.3.0",
"webpack-dev-server": "^4.10.0"
},
"msw": {
"workerDirectory": "src/public"
}
}