-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.39 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
{
"name": "ooga-lang",
"version": "1.0.0",
"main": "index.ts",
"repository": "https://github.com/CS4215-OOGA/ooga-lang.git",
"author": "JothamWong <45916998+JothamWong@users.noreply.github.com>",
"license": "MIT",
"private": true,
"dependencies": {
"@babel/plugin-proposal-export-default-from": "^7.23.3",
"@types/node": "^20.11.28",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"eslint": "^8.57.0",
"express": "^4.19.2",
"peggy": "^4.0.2",
"swc": "^1.0.11",
"ts-node": "^10.9.2",
"tsx": "^4.7.1"
},
"type": "module",
"scripts": {
"build": "yarn swc ./src -d dist --copy-files ",
"peggy": "peggy ./src/parser/ooga.pegjs --format es",
"compile": "node dist/vm/oogavm.js booga.ooga -o booga.bm",
"ooga": "node ./dist/vm/oogavm-machine.js booga.bm",
"booga": "yarn compile && yarn ooga",
"test": "yarn build && node ./dist/tests/test.js",
"tooga": "yarn peggy && yarn build && yarn test",
"pooga": "yarn peggy && yarn build",
"server": "yarn build && node ./dist/server/server.js",
"format": "npx prettier --write ./src/**/*.ts"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"typescript": "^5.4.3"
}
}