-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
89 lines (89 loc) · 2.45 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-aframe-typescript-boilerplate",
"version": "1.0.0",
"private": true,
"homepage": ".",
"description": "React, AFrame, Typescript demo integration",
"repository": {
"type": "git",
"url": "https://github.com/YagoLopez/react-aframe-typescript-boilerplate"
},
"bugs": {
"url": "https://github.com/YagoLopez/react-aframe-typescript-boilerplate/issues"
},
"author": {
"name": "Yago Lopez",
"email": "[email protected]",
"url": "https://yagolopez.js.org"
},
"license": "MIT",
"dependencies": {
"@types/node": "^9.4.0",
"@types/react": "^16.0.25",
"@types/react-dom": "^16.0.3",
"@types/react-router": "^4.0.19",
"@types/react-router-dom": "^4.2.3",
"aframe": "^0.7.1",
"aframe-extras": "^3.13.1",
"aframe-orbit-controls-component-2": "^0.1.14",
"aframe-video-controls": "^0.3.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts-ts": "2.13.0",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.8",
"@types/enzyme-adapter-react-16": "^1.0.1",
"@types/jest": "^22.1.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"jest": "20.0.4",
"lite-server": "^2.3.0",
"source-map-explorer": "^1.5.0",
"ts-jest": "^22.0.2",
"tslint": "^5.9.1"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"eject": "react-scripts-ts eject",
"test": "jest test --env=jsdom",
"test:watch": "jest --watch",
"test:debug": "jest --debug",
"coverage": "jest --no-cache --coverage",
"analyze": "source-map-explorer build/static/js/main.*"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.test.json"
}
},
"setupFiles": [
"<rootDir>/config/test-shim.js",
"<rootDir>/config/test-setup.js"
],
"mapCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/assetsTransformer.js",
"\\.(css|less)$": "<rootDir>/config/assetsTransformer.js"
},
"roots": [
"src"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverageFrom": [
"src/**/*.{tsx,ts}",
"!src/index.tsx"
]
}
}