forked from CyberAgentAILab/EBPMDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 894 Bytes
/
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
{
"name": "ebpm-proto",
"private": true,
"scripts": {
"dev": "ENV=dev next dev -p 3001",
"build": "ENV=prd next build",
"start": "next start",
"lint": "next lint",
"out": "ENV=prd next build && next export",
"static": "cd ./out && npx http-server -p 8000 -o"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/icons": "^5.0.0-beta.5",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.5",
"@mui/styles": "^5.2.3",
"@mui/x-data-grid": "^5.8.0",
"gray-matter": "^4.0.3",
"next": "12.0.9",
"raw-loader": "^4.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^7.1.1"
},
"devDependencies": {
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"typescript": "4.5.4"
}
}