-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.59 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
{
"name": "portfolio",
"version": "1.1.0",
"description": "A personal portfolio to showcase Anton G Neuhold's work on his website.",
"scripts": {
"i": "yarn && yarn i:react && yarn i:svelte",
"i:react": "cd react && yarn",
"i:svelte": "cd svelte && yarn",
"svelte": "yarn copy-shared-files && cd svelte && yarn dev",
"svelte:build": "yarn copy-shared-files && cd svelte && yarn build",
"react": "yarn copy-shared-files && cd react && yarn dev",
"react:build": "yarn copy-shared-files && cd ./react && yarn build",
"react:start": "next start ./react",
"react:export": "next export ./react",
"react:deploy": "yarn react:build && yarn react:export",
"copy-shared-files": "copyfiles ./config/* ./react/_shared-config ./svelte/_shared-config -f && copyfiles ./lib/* ./react/_shared-lib ./svelte/_shared-config -f",
"upgradeAndTest": "yarn upgrade --latest && yarn copy-shared-files && cd svelte && yarn upgradeAndTest",
"test": "yarn copy-shared-files && cd svelte && yarn buildAndTest"
},
"keywords": [],
"author": "Anton G. Neuhold Jr",
"license": "ISC",
"dependencies": {
"copyfiles": "^2.4.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2"
},
"devDependenciesNotes": {
"eslint-plugin-jsx-a11y": "This is needed for eslint-config-airbnb to work"
},
"private": true
}