-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "outrun-renderer-3d",
"version": "0.0.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"precommit": "pretty-quick --staged",
"build": "tsc",
"test": "jest --coverage",
"coverage": "codecov"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"author": "Outrun Labs",
"license": "GPL",
"dependencies": {
"fbjs": "0.8.16",
"react": "^16.4.0",
"react-reconciler": "^0.10.0",
"react-test-renderer": "^16.4.0",
"three": "^0.92.0",
"three-fbx-loader": "^1.0.3",
"three-obj-loader": "^1.1.3"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^10.0.3",
"@types/react": "^16.3.16",
"@types/three": "^0.91.10",
"husky": "^0.14.3",
"jest": "^22.4.4",
"prettier": "^1.13.4",
"pretty-quick": "^1.6.0",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3"
}
}