Files
esolang/package.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2021-04-22 13:42:55 +05:30
{
"name": "esolang-park",
2021-04-22 13:42:55 +05:30
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
2021-12-18 15:52:25 +05:30
"lint": "next lint",
2022-01-18 15:17:08 +05:30
"test": "jest",
"build": "yarn run build:worker && next build",
2021-12-18 15:52:25 +05:30
"dev:worker": "webpack -c worker-pack/webpack.dev.js --watch",
"build:worker": "webpack -c worker-pack/webpack.prod.js",
"add-new-language": "node scripts/add-new-language.js"
},
"dependencies": {
2022-02-03 19:45:38 +05:30
"@blueprintjs/core": "^4.0.0-beta.12",
"@monaco-editor/react": "^4.3.1",
2025-01-16 14:38:21 -08:00
"blueprintjs": "^0.0.8",
2022-02-18 16:57:59 +05:30
"chevrotain": "^10.0.0",
"monaco-editor": "^0.30.1",
2025-01-16 14:36:06 -08:00
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
2022-02-03 19:45:38 +05:30
"react-mosaic-component": "^5.0.0",
2025-01-16 14:36:06 -08:00
"sass": "^1.49.7",
"sharp": "0.32.6"
},
2021-04-22 13:42:55 +05:30
"devDependencies": {
2022-01-18 15:17:08 +05:30
"@types/jest": "^27.4.0",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"eslint": "8.4.0",
"eslint-config-next": "12.0.7",
2022-01-18 15:17:08 +05:30
"jest": "^27.4.7",
"peggy": "^1.2.0",
2021-12-18 15:52:25 +05:30
"ts-loader": "^9.2.6",
2022-02-18 16:57:59 +05:30
"ts-node": "^10.5.0",
2021-12-18 15:52:25 +05:30
"typescript": "4.5.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
2021-04-22 13:42:55 +05:30
}
}