-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 995 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 995 Bytes
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
{
"name": "mathrpn",
"version": "1.0.0",
"description": "Math interpreter using the Reverse Polish Notation, NextJS & TypeScript",
"main": "index.js",
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegorlb/MathRPN.git"
},
"author": "Diego Rodríguez",
"license": "ISC",
"bugs": {
"url": "https://github.com/diegorlb/MathRPN/issues"
},
"homepage": "https://github.com/diegorlb/MathRPN#readme",
"dependencies": {
"next": "^10.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"typescript": "^4.2.4"
}
}