-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (62 loc) · 2.38 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
55
56
57
58
59
60
61
62
{
"name": "whisker",
"version": "0.8.0",
"description": "A Testing Utility for Scratch 3.0",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/se2p/whisker-main"
},
"private": true,
"workspaces": [
"whisker-main",
"whisker-web",
"scratch-analysis",
"servant"
],
"scripts": {
"build": "yarn --cwd scratch-analysis build && yarn --cwd whisker-main build && yarn --cwd whisker-web build",
"build:watch": "concurrently --names \"scratch-analysis,whisker-main,whisker-web\" \"yarn --cwd scratch-analysis build:watch\" \"yarn --cwd whisker-main build:watch\" \"yarn --cwd whisker-web build:watch\"",
"build:clean": "yarn --cwd scratch-analysis build:clean && yarn --cwd whisker-main build:clean && yarn --cwd whisker-web build:clean",
"build-main": "yarn --cwd whisker-main build",
"build-web": "yarn --cwd whisker-web build",
"build-analysis": "yarn --cwd scratch-analysis build",
"servant": "yarn --cwd servant node servant.js",
"test": "yarn --cwd scratch-analysis test && yarn --cwd whisker-main test",
"integrationtest": "yarn --cwd whisker-web test"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@types/jest": "28.1.5",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.2",
"babel-preset-minify": "^0.5.1",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.1",
"eslint": "^7.32.0",
"eslint-config-scratch": "^7.0.0",
"eslint-plugin-node": "^11.1.0",
"expose-loader": "^1.0.3",
"file-url": "3.0.0",
"imports-loader": "^1.2.0",
"ink-docstrap": "^1.3.2",
"jest": "^28.1.3",
"jest-puppeteer": "6.1.1",
"jsdoc": "^3.6.7",
"mini-css-extract-plugin": "^1.6.2",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"tap": "^15.0.9",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "~4.6",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}