-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.22 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
70
71
{
"name": "personal-site",
"version": "3.0.0",
"description": "www.davidcsally.com",
"private": false,
"scripts": {
"dev": "next dev",
"lint": "eslint src/**/*{.ts,.tsx}",
"predeploy": "npm run build",
"start": "next start",
"build": "next build",
"test": "jest",
"cypress": "cypress run",
"test:cypress": "start-server-and-test dev http://localhost:3000 cypress",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidcsally/davidcsally.github.io.git"
},
"author": "David Sally",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidcsally/davidcsally.github.io/issues"
},
"homepage": "https://www.davidcsally.com",
"dependencies": {
"border-box.css": "^1.0.0",
"framer-motion": "^4.1.17",
"next": "^12.0.0",
"normalize.css": "^8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-modal": "^3.15.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.2",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addons": "^6.5.10",
"@storybook/react": "^6.5.10",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.10",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"babel-plugin-styled-components": "^1.13.3",
"cypress": "^9.5.4",
"eslint": "8.55.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"typescript": "^4.5.0"
}
}