-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 KB
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
{
"name": "@sourceacademy/tab-Curve",
"version": "1.0.0",
"private": true,
"dependencies": {
"@blueprintjs/core": "^6.0.0",
"@blueprintjs/icons": "^6.0.0",
"@sourceacademy/bundle-curve": "workspace:^",
"@sourceacademy/modules-lib": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@sourceacademy/modules-buildtools": "workspace:^",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/browser-playwright": "4.1.4",
"@vitest/coverage-v8": "4.1.4",
"playwright": "^1.55.1",
"typescript": "^6.0.2",
"vitest": "4.1.4",
"vitest-browser-react": "^2.1.0"
},
"scripts": {
"build": "buildtools build tab .",
"lint": "buildtools lint .",
"test": "buildtools test --project .",
"tsc": "buildtools tsc .",
"serve": "yarn buildtools serve"
},
"type": "module",
"scripts-info": {
"build": "Compiles the given tab to the output directory",
"lint": "Runs ESlint on the code in the tab",
"serve": "Starts the modules server",
"test": "Runs unit tests defined for the tab",
"tsc": "Runs the Typescript compiler"
}
}