-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.71 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
{
"name": "@ff6347/p5-sandbox",
"private": true,
"version": "1.6.1",
"type": "module",
"scripts": {
"copy:p5": "mkdirp ./public/lib && mkdirp ./public/lib/addons && node ./scripts/copy-p5.mjs",
"dev": "export PUBLIC_BASE_URL=$CF_PAGES_URL && astro dev",
"start": "export PUBLIC_BASE_URL=$CF_PAGES_URL && astro dev",
"prebuild": "npm run copy:p5",
"postinstall": "npm run copy:p5",
"build": "export PUBLIC_BASE_URL=$CF_PAGES_URL && astro build",
"build:netlify": "export PUBLIC_BASE_URL=$DEPLOY_URL && astro build",
"check": "astro check",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:e2e": "playwright test"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/react": "3.6.2",
"@babel/standalone": "7.25.8",
"@freecodecamp/loop-protect": "3.0.0",
"@monaco-editor/react": "4.6.0",
"@types/p5": "1.7.6",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"astro": "4.16.6",
"lodash.debounce": "4.0.8",
"p5": "1.11.0",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.6.3",
"workbox-window": "7.1.0"
},
"devDependencies": {
"@playwright/test": "1.48.2",
"@technologiestiftung/semantic-release-config": "1.2.4",
"@testing-library/react": "16.0.1",
"@types/babel__standalone": "7.1.7",
"@types/lodash.debounce": "4.0.9",
"@types/node": "20.17.6",
"@vite-pwa/astro": "0.4.3",
"jsdom": "25.0.1",
"mkdirp": "3.0.1",
"netlify-cli": "17.37.2",
"vitest": "2.1.4"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"useTabs": true,
"printWidth": 80,
"overrides": [
{
"files": [
"*.yml",
"*.yaml"
],
"options": {
"useTabs": false
}
}
]
}
}