-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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": "virus-simulation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server --open"
},
"author": "Daniele Calleri",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/matter-js": "^0.10.2",
"@types/pixi.js": "^4.8.2",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"eslint": "^5.15.1",
"file-loader": "^2.0.0",
"fsevents": "^1.2.9",
"jest": "^24.3.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.2.2",
"typescript": "^3.1.3",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"delaunator": "^3.0.2",
"matter-js": "^0.14.2",
"pixi.js": "^4.8.2",
"ture": "^0.1.2",
"uuid": "^3.3.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
}
}
}