-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 958 Bytes
/
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
{
"name": "js-playground",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"traverse": "ts-node-esm -P tsconfig.json src/traversal/index.mts",
"dts": "ts-node-esm -P tsconfig.json src/dtsparser/index.mts",
"lex": "ts-node-esm -P tsconfig.json src/craftinginterpreters/index.mts",
"expr": "ts-node-esm -P tsconfig.json src/craftinginterpreters/expression.mts",
"start": "ts-node-esm -P tsconfig.json src/index.mts",
"show-configs": "ts-node-esm --showConfig",
"test": "jest"
},
"dependencies": {
"chokidar": "^3.5.3",
"dotenv": "^16.0.3",
"inquirer": "^9.1.4",
"prompt-sync": "^4.2.0",
"protocoljs": "^0.1.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.11",
"@types/jest": "^29.5.4",
"@types/node": "^18.14.6",
"ts-jest": "^29.1.1"
},
"keywords": [],
"author": "",
"license": "ISC"
}