-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "jamespamplin.com",
"author": {
"name": "James Pamplin",
"email": "[email protected]",
"url": "https://jamespamplin.com"
},
"homepage": "https://jamespamplin.com",
"version": "3.0.2",
"private": true,
"scripts": {
"build": "NODE_ENV=production ts-node src/build.tsx",
"prebuild": "npm run lint",
"dev": "live-server dist",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,md}'",
"lint": "concurrently npm:format npm:eslint npm:tsc",
"eslint": "eslint --fix './src/**/*.ts*'",
"start": "concurrently npm:dev npm:watch",
"tsc": "tsc --noEmit",
"watch": "nodemon -e ts,tsx,md -w src -x 'npm run build'",
"prepare": "husky install"
},
"dependencies": {
"aphrodite": "^2.4.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-markdown": "^6.0.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"concurrently": "^7.1.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.17.0",
"husky": "^8.0.0",
"live-server": "^1.1.0",
"nodemon": "^3.1.2",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20"
}
}