forked from danakt/web-hlmv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.51 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
90
91
92
{
"scripts": {
"start": "webpack-dev-server --mode development --host 0.0.0.0",
"build": "webpack --p",
"test": "jest"
},
"author": "Danakt Frost <[email protected]>",
"license": "MIT",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.ts"
]
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@types/gl-matrix": "^2.4.0",
"@types/html-webpack-plugin": "^2.30.3",
"@types/jest": "^24.0.25",
"@types/jest-image-snapshot": "^2.11.1",
"@types/node": "^10.3.1",
"@types/ramda": "^0.25.34",
"@types/react": "^16.8.2",
"@types/react-color": "^2.14.0",
"@types/react-dom": "^16.8.0",
"@types/react-dropzone": "^4.2.2",
"@types/react-hot-loader": "^4.1.0",
"@types/styled-components": "4.1.8",
"@types/three": "^0.93.19",
"awesome-typescript-loader": "^5.2.0",
"babel-plugin-styled-components": "^1.8.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-arca": "^0.6.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-typescript": "^0.8.1",
"fast-dataview": "^0.3.3",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-image-snapshot": "^2.5.0",
"prettier": "^1.11.1",
"prettier-eslint": "^8.8.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"typescript-eslint-parser": "^20.0.0",
"webpack": "^4.0.0-beta.3",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"fast-png": "^3.1.0",
"gl-matrix": "^2.7.1",
"libreact": "^2.8.1",
"multi-array-view": "^0.1.0",
"ramda": "^0.25.0",
"react": "^16.8.1",
"react-color": "^2.17.0",
"react-dom": "^16.8.1",
"react-dropzone": "^8.0.4",
"react-hot-loader": "^4.6.5",
"style-loader": "^0.23.1",
"styled-components": "^4.4.1",
"three": "^0.101.1",
"three-orbit-controls": "^82.1.0"
}
}