-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "dashlabs",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "next -p 3000",
"build": "next build",
"export": "next export",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix && prettier --write ."
},
"license": "ISC",
"dependencies": {
"@emotion/react": "11.4.1",
"@emotion/styled": "11.3.0",
"@mui/material": "5.0.0-rc.1",
"@mui/styles": "5.0.0-rc.1",
"next": "^12.3.1",
"prismjs": "^1.29.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-simple-code-editor": "^0.13.0"
},
"devDependencies": {
"@types/node": "^18.7.20",
"@types/prismjs": "^1.26.0",
"@types/react": "17.0.17",
"@types/react-dom": "17.0.11",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"eslint": "^8.27.0",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"typescript": "4.4.4"
},
"engines": {
"node": ">=14",
"npm": ">=7"
}
}