forked from fullstackmb/fullstackmb.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 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
{
"name": "fullstackmb-website",
"version": "3.1.1",
"main": "index.js",
"scripts": {
"clean": "rimraf _site",
"dev": "npm run client:build && concurrently \"npm run dev:eleventy\" \"npm run client:watch\"",
"dev:eleventy": "tsx node_modules/@11ty/eleventy/cmd.cjs --config=eleventy.config.ts --serve",
"client:build": "node build-client.js",
"client:watch": "node build-client.js --watch",
"build": "npm run client:build && tsx node_modules/@11ty/eleventy/cmd.cjs --config=eleventy.config.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
},
"keywords": [],
"author": {
"name": "Full Stack Manitoba",
"email": "[email protected]",
"url": "https://fullstackmb.ca"
},
"contributors": [
{
"name": "David Wesst",
"email": "[email protected]",
"url": "https://www.davidwesst.com"
},
{
"name": "Shane Charles",
"email": "[email protected]"
},
{
"name": "Amir Barylko",
"email": "[email protected]"
},
{
"name": "Oleksandr Paiziak",
"email": "[email protected]"
}
],
"license": "MIT",
"description": "",
"type": "module",
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.1",
"child_process": "^1.0.2",
"class-variance-authority": "^0.7.0",
"jsx-async-runtime": "^0.1.8",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^11.0.2",
"url": "^0.11.4"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@playwright/test": "^1.48.2",
"@testing-library/dom": "^10.0.0",
"@types/node": "^20.11.24",
"concurrently": "^9.1.2",
"esbuild": "^0.24.2",
"happy-dom": "^15.10.2",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"tsx": "^4.7.2"
}
}