-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "javascript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"dev:docker": "docker-compose down && docker-compose up",
"format": "prettier --write '{pages,quotes,src,tests,utils}/**/*.{js,jsx,css,md,yml}'",
"lint": "next lint --max-warnings 0",
"preinstall": "git config core.hooksPath .hooks",
"test": "npm run test:unit && npm run test:acceptance && npm run test:journey",
"test:acceptance": "jest acceptance",
"test:journey": "NODE_ENV=test cypress run --project tests",
"test:journey:ci": "npm run test:journey -- --config-file=cypress.config.ci.js",
"test:journey:open": "NODE_ENV=test cypress open --project tests",
"test:unit": "TZ=UTC jest unit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^16.0.0",
"autoprefixer": "^10.4.14",
"cypress": "^13.0.0",
"eslint": "9.19.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.3.0",
"jest-environment-jsdom": "^29.3.0",
"nock": "^13.2.9",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.3"
},
"dependencies": {
"@notionhq/client": "^2.2.2",
"gray-matter": "^4.0.2",
"marked": "^15.0.3",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"next": "^15.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanitize-html": "^2.3.2",
"swr": "^2.0.0"
}
}