-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1020 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
{
"name": "technicalc-core",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"clean": "rescript clean",
"build-packages": "rescript build",
"watch-packages": "watchexec -w packages -i lib -e res,resi yarn build-packages",
"clean-watch-packages": "watchexec -w packages -i lib -e res,resi 'yarn clean && yarn build-packages'",
"build-bundles": "yarn workspace technicalc-prebuilt build",
"watch-bundles": "yarn workspace technicalc-prebuilt watch-bundles",
"build": "yarn build-packages && yarn build-bundles",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "eslint ."
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"esm": "^3.2.25",
"jest": "^29.4.3",
"prettier": "^2.7.1",
"rescript": "^11.1.4"
}
}