-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"name": "personal-site",
"version": "1.0.0",
"description": "The source code for willlaeri.com.",
"engines": {
"node": ">=14",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wlaeri/personal-site.git"
},
"author": "Will Laeri <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wlaeri/personal-site/issues"
},
"homepage": "https://github.com/wlaeri/personal-site#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:unit": "jest --coverage",
"test:e2e": "cypress run",
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"analyze:local": "lighthouse http://localhost:3000 --outputPath=lighthouse.html && open ./lighthouse.html",
"analyze:prod": "lighthouse https://www.willlaeri.com --outputPath=lighthouse.html && open ./lighthouse.html",
"docs:generate": "docker-compose --file ./docs/docker-compose.yml up"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mdx-js/react": "^1.6.22",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"modern-normalize": "^1.1.0",
"next": "12.1.5",
"next-strict-csp": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sharp": "^0.30.3",
"theme-ui": "^0.14.2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "17.0.23",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.15",
"cypress": "^9.5.4",
"eslint": "8.13.0",
"eslint-config-next": "12.1.5",
"express": "^4.17.3",
"lighthouse": "^9.5.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "4.6.3"
}
}