-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.08 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
{
"name": "lucasbin",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 5001",
"build": "next build",
"start": "next start",
"lint:ts": "eslint . --ext .js,.ts,.tsx",
"lint:css": "stylelint ./src/**/*.{js,jsx,ts,tsx}",
"lint": "npm run lint:ts && npm run lint:css",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "jest --config ./jest.e2e.json",
"test": "npm run test:unit && npm run test:e2e && npm run lint",
"build-start": "next build && next start"
},
"dependencies": {
"@cmdlucas/markdown-metadata": "^1.0.7",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"base64-img": "^1.0.4",
"next": "^13.4.3",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"slugify": "^1.6.6",
"styled-components": "^5.3.10"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^20.11.20",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.58",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^7.1.0",
"babel-plugin-styled-components": "^2.1.3",
"enzyme": "^3.11.0",
"eslint": "^8.57.0",
"jest": "^26.6.3",
"postcss-syntax": "^0.36.2",
"react-test-renderer": "^18.2.0",
"stylelint": "^15.11.0",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^26.5.6",
"typescript": "^4.9.5",
"typescript-styled-plugin": "^0.18.3"
}
}