-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "rust-sandbox",
"version": "1.0.0",
"description": "Run Rust programs in your browser",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dan-valinotti/rust-sandbox.git"
},
"author": "Dan Valinotti",
"license": "ISC",
"bugs": {
"url": "https://github.com/dan-valinotti/rust-sandbox/issues"
},
"homepage": "https://github.com/dan-valinotti/rust-sandbox#readme",
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@types/ace": "0.0.42",
"@types/next": "^9.0.0",
"@types/react": "^16.9.23",
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"ace-builds": "^1.4.8",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"next": "^9.3.2",
"node-fetch": "^2.6.1",
"react": "^16.13.0",
"react-ace": "^8.0.0",
"react-dom": "^16.13.0",
"styled-components": "^5.0.1",
"uuid-token-generator": "^1.0.0"
},
"devDependencies": {
"@types/micro-cors": "^0.1.0",
"@types/node": "^13.7.7",
"@types/node-fetch": "^2.5.5",
"@types/styled-components": "^5.0.1",
"typescript": "^3.8.3"
}
}