-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 KB
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
{
"name": "countries-app",
"description": "A Next.js Web Application built with the REST Countries's REST API",
"version": "0.1.0",
"private": true,
"author": {
"name": "Dev. Avi",
"email": "savinash2608@gmail.com",
"url": "https://devavi.xyz"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"docs": "rimraf temp-docs && typedoc --plugin typedoc-plugin-markdown --theme markdown --out temp-docs && concat-md --toc --decrease-title-levels --dir-name-as-title temp-docs > DOCUMENTATION.md && rimraf temp-docs",
"docs-txt": "pandoc -f markdown -t plain --wrap=none DOCUMENTATION.md -o DOCUMENTATION.txt"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@material-ui/core": "^5.0.0-alpha.25",
"@material-ui/data-grid": "^4.0.0-alpha.20",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"next": "10.0.7",
"next-redux-wrapper": "^6.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-redux": "^7.1.16",
"concat-md": "^0.3.5",
"pandoc": "^0.2.0",
"rimraf": "^3.0.2",
"showdown": "^1.9.1",
"typedoc": "^0.20.28",
"typedoc-plugin-markdown": "^3.5.0",
"typescript": "^4.1.5"
}
}