-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "casper-interactive-tutorial",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint **/*.{ts,tsx} --fix",
"format": "prettier **/*.{ts,tsx} --write",
"lint-staged": "lint-staged",
"test": "jest --watchAll --coverage --verbose --detectOpenHandles"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@monaco-editor/react": "^4.3.1",
"@mui/material": "^5.6.0",
"@types/uuid": "8.3.2",
"classnames": "^2.3.1",
"gray-matter": "4.0.3",
"lodash.throttle": "^4.1.1",
"monaco-editor": "^0.33.0",
"next": "^12.1.0",
"prismjs": "^1.27.0",
"react": "^17.0.2",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-share": "^4.4.0",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"remark-prism": "^1.3.6",
"uuid": "8.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^14.0.0",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^17.0.22",
"@types/prismjs": "^1.26.0",
"@types/react": "^17.0.41",
"@types/react-custom-scrollbars": "^4.0.10",
"@types/remark-prism": "^1.3.0",
"eslint": "^8.11.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"husky": "^4.3.8",
"jest": "^27.5.1",
"lint-staged": "^10.5.1",
"prettier": "^2.6.1",
"typescript": "^4.5.5"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"npm run lint",
"npm run format",
"git add ."
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}