-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 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
{
"name": "monarq-vis",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon server/server.js",
"build": "NODE_ENV=production webpack",
"dev": "nodemon server/server.js & NODE_ENV=development webpack serve --open",
"dockerprod": "docker run --name monarq-prod -p 3000:3000 monarqpath/monarq-prod",
"dockerdev": "docker-compose -f docker-compose-dev.yml up",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.3",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@fontsource/manjari": "^4.4.2",
"@fontsource/sansita": "^4.4.2",
"core-js": "^3.12.1",
"express": "^4.17.1",
"framer-motion": "^4.1.17",
"highlight.js": "^10.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.7",
"use-undo": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"prettier": "^2.3.0",
"source-map-loader": "^2.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}