-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "demo_compiler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage=true --runInBand",
"cleantest": "rm snapshots/*",
"start": "BUILD_TIME=$(date +%s) parcel serve --port 5002 web/*.html",
"build": "BUILD_TIME=$(date +%s) parcel build --public-url ./ web/*.html",
"postinstall": "npm run buildmonaco",
"buildmonaco": "mkdir -p dist && cp -vR ./node_modules/monaco-editor/min/vs/ dist/monaco"
},
"author": "",
"license": "ISC",
"dependencies": {
"@monaco-editor/react": "^4.2.0",
"@types/node": "^14.0.23",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/styled-components": "^5.1.10",
"monaco-editor": "^0.21.2",
"pad": "^3.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-textarea-autosize": "^8.3.3",
"styled-components": "^5.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"wabt": "^1.0.19"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"jest": "^26.1.0",
"parcel-bundler": "^1.3.1",
"ts-jest": "^26.1.3"
}
}