-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
48
49
50
{
"private": true,
"name": "typestate-editor",
"scripts": {
"n": "node --experimental-loader ./scripts/loader.mjs",
"gen-parser": "java -jar antlr-4.12.0-complete.jar -Dlanguage=TypeScript src/tool/Typestate.g4 -o src/tool/parser -visitor",
"dev": "next",
"clean": "rm -f -r .next && rm -f -r out",
"build": "yarn run clean && yarn next build",
"http": "http-server out -c-1",
"format": "prettier --write \"**/*.{js,ts,tsx,json,md}\"",
"lint": "eslint **/*.js **/*.ts **/*.tsx"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.11.3",
"antlr4": "^4.12.0",
"copy-to-clipboard": "^3.3.3",
"jsoneditor": "^9.10.2",
"monaco-editor": "^0.38.0",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@types/jsoneditor": "^9.9.0",
"@types/node": "^20.2.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"http-server": "^14.1.1",
"next": "^13.4.2",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"packageManager": "yarn@3.5.1"
}