-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "befunge-interpreter",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack-dev-server -d --open",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpnykw/befunge-interpreter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jpnykw/befunge-interpreter/issues"
},
"homepage": "https://github.com/jpnykw/befunge-interpreter#readme",
"dependencies": {
"@material-ui/icons": "^4.9.1",
"@types/styled-components": "^5.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@material-ui/core": "^4.9.11",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"grunt-contrib-uglify": "^4.0.1",
"source-map-loader": "^0.2.4",
"ts-loader": "^7.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}