-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
{
"name": "juditkaramazfolio",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "next",
"build": "next build",
"preview": "npm run build && next start",
"export": "next export",
"typecheck": "tsc",
"lint:js": "next lint",
"lint:css": "stylelint ./src/**/*.css",
"lint": "npm run lint:js && npm run lint:css",
"format": "prettier --write 'src/**/*.{ts,tsx,css}'",
"jest": "jest --coverage -c tests/jest.config.ts",
"test": "NODE_ENV=test npm run lint && npm run typecheck && npm run jest",
"new": "ts-node-esm ./scripts/new.ts"
},
"dependencies": {
"@giphy/js-fetch-api": "^5.1.0",
"@radix-ui/react-select": "^1.2.2",
"@types/jest": "^29.5.7",
"@yaireo/relative-time": "^1.0.4",
"file-saver": "^2.0.5",
"framer-motion": "^10.16.4",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"lucide-react": "^0.279.0",
"next": "13.5.4",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.0",
"remark": "^14.0.3",
"remark-gfm": "^4.0.0",
"remark-html": "^15.0.2",
"ts-node": "^10.9.1",
"vcf": "^2.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "13.5.5",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"ora": "^7.0.1",
"prepend": "^1.0.2",
"prettier": "^3.0.3",
"sharp": "^0.32.6",
"sharp-ico": "^0.1.5",
"slugify": "^1.6.6",
"stylelint": "^15.10.3",
"stylelint-prettier": "^4.0.2",
"typescript": "^5"
}
}