-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"jest": "jest --env=node --colors --coverage test",
"test": "jest --watch",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:e2e": "is-ci \"test:e2e:run\" \"test:e2e:dev\"",
"pretest:e2e:run": "yarn run build",
"test:e2e:run": "start-server-and-test start http://localhost:3000 cy:run",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 cy:open",
"validate": "yarn run test:coverage && yarn run test:e2e:run"
},
"dependencies": {
"gray-matter": "^4.0.3",
"mongodb": "^4.5.0",
"next": "12.1.5",
"node": "^17.7.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-markdown": "^8.0.3",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.2",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.5.0",
"@types/node": "17.0.31",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-syntax-highlighter": "^15.5.1",
"autoprefixer": "^10.4.7",
"babel-jest": "^28.1.0",
"cypress": "^9.6.1",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"eslint-plugin-cypress": "^2.12.1",
"is-ci-cli": "^2.2.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.0.24",
"ts-jest": "^28.0.2",
"typescript": "4.6.4"
}
}