forked from nand2tetris/web-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.47 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
51
52
53
54
{
"name": "@nand2tetris/web-ide",
"version": "0.0.0",
"description": "A Javascript reimplementation of nand2tetris.org.",
"repository": {
"type": "git",
"url": "git+https://github.com/nand2tetris/web-ide.git"
},
"author": "David Souther <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nand2tetris/web-ide/issues"
},
"homepage": "https://github.com/nand2tetris/web-ide",
"scripts": {
"precli": "npm run build -w cli",
"cli": "node cli",
"ci": "CI=true npm run check && CI=true npm run test",
"precheck": "npm -w web run extract && npm -w web run lingui",
"check": "npm run check:format && npm run check:types && npm run check:lint",
"clean": "rm -rf cli/build components/build extension/build projects/build runner/build simulator/build web/build",
"format": "prettier --write cli/src components/src extension/src projects/src runner/src simulator/src web/src web/public",
"fix": "eslint --fix cli/src components/src extension/src projects/src runner/src simulator/src web/src web/public",
"check:format": "prettier --ignore-unknown --check cli/src components/src extension/src projects/src runner/src simulator/src web/src web/public",
"check:lint": "eslint --no-error-on-unmatched-pattern cli/src components/src extension/src projects/src runner/src simulator/src web/src web/public",
"check:types": "tsc --build tsconfig.json",
"build": "CI=true npm run build -w projects && CI=true npm run build -w runner && CI=true npm run build -w simulator && CI=true npm run build -w cli && CI=true npm run build -w components && CI=true npm run build -w web && CI=true npm run build -w extension",
"build:extension": "CI=true npm run build -w extension",
"test": "CI=true npm test -w simulator && CI=true npm test -w components && CI=true npm test -w web",
"web": "npm run start -w web",
"start": "npm run web",
"preinstall-cli": "npm run build -w projects && npm run build -w runner && npm run build -w simulator && npm run build -w cli",
"install-cli": "npm i -g cli"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"esbuild": "^0.15.18",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.31.11",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"workspaces": [
"cli",
"components",
"extension",
"extension/views/hdl",
"projects",
"runner",
"simulator",
"web"
]
}