-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "max-math",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "esbuild --bundle --watch --outfile=index.js --format=iife --platform=browser --global-name=windowCopy index.ts",
"test": "jest --testPathPattern *.test.js",
"browser": "esbuild ./Examples/digitRecognizer/browser.ts --platform=browser --watch --bundle --outfile=browser.js",
"network-example": "tsm Examples/digitRecognizer/DigitRecognizer.ts"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@types/get-pixels": "^3.3.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.176",
"@types/ws": "^8.2.0",
"@zardoy/tsconfig": "^1.2.2",
"esbuild": "^0.13.13",
"esbuild-jest": "^0.5.0",
"get-pixels": "^3.3.3",
"jest": "^27.3.1",
"lodash": "^4.17.21",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4",
"ws": "^8.2.3"
},
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"tsm": "^2.1.4"
}
}