-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "jtd-validator",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --ext .js,jsx,.ts,.tsx --fix",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css}'"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 100
},
"dependencies": {
"@emotion/cache": "11.5.0",
"@emotion/react": "11.5.0",
"@emotion/server": "11.4.0",
"@emotion/styled": "11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/material": "5.0.6",
"clsx": "1.1.1",
"codemirror": "^5.63.3",
"json5": "^2.2.0",
"jtd": "^0.1.1",
"lz-string": "^1.4.4",
"next": "12.0.2",
"prettier": "^2.4.1",
"react": "17.0.2",
"react-codemirror2": "^7.2.1",
"react-dom": "17.0.2",
"react-share": "^4.4.0"
},
"devDependencies": {
"@types/codemirror": "^5.60.5",
"@types/lz-string": "^1.3.34",
"@types/node": "^16.11.6",
"@types/prettier": "^2.4.1",
"@types/react": "17.0.34",
"@types/react-dom": "17.0.11",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.2",
"eslint-config-prettier": "^8.3.0",
"typescript": "4.4.4"
}
}