-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "whiteboard-clone",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "parcel index.html --open",
"build": "parcel build index.html",
"test": "jest",
"test:watch": "jest --watch",
"pretty": "yarn prettier --config .prettierrc --write '**/*.(ts|json|md)'",
"pretty:check": "yarn prettier --config .prettierrc --check '**/*.(ts|json|md)'"
},
"dependencies": {
"snabbdom": "^2.0.0",
"tslib": "^2.0.1",
"typestyle": "2.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/jest": "^26.0.13",
"@types/sinon": "^9.0.5",
"chai": "^4.2.0",
"jest": "^26.4.2",
"jest-canvas-mock": "^2.2.0",
"parcel-bundler": "^1.6.1",
"prettier": "^2.1.1",
"sinon": "^9.0.3",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"keywords": [],
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFiles": [
"jest-canvas-mock"
],
"moduleNameMapper": {
".+\\.css$": "<rootDir>/src/styleMock.ts"
},
"testMatch": [
"**/*.(test|spec).(ts|tsx|js)"
]
}
}