-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.55 KB
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
{
"name": "tusur-compgraphics",
"version": "0.2.0",
"private": true,
"description": "Tusur OpenGL labs",
"main": "src/index.tsx",
"dependencies": {
"@craco/craco": "3",
"@types/styled-components": "^4.1.0",
"antd": "^3.10.7",
"craco-antd": "^1.2.0",
"gl-matrix": "^2.8.1",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-scripts": "2.1.1",
"styled-components": "^4.1.1"
},
"devDependencies": {
"@types/gl-matrix": "^2.4.4",
"@types/react": "~16.7.3",
"@types/react-dom": "^16.0.9",
"babel-plugin-import": "^1.11.0",
"husky": "^1.1.4",
"lint-staged": "^8.0.5",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.6"
},
"scripts": {
"start": "BROWSER=none craco start",
"build": "craco build",
"test": "craco test --env=jsdom",
"eject": "react-scripts eject",
"lint": "tslint \"src/**/*.{ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "tslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpont/tusur-compgraph.git"
},
"contributors": [
"Eugeniy Guzhikhin <gpont97@gmail.com>",
"Gutman Dmitriy <fryngies@tomengine.ru>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gpont/tusur-compmath/issues"
},
"homepage": "https://github.com/gpont/tusur-compmath#readme",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}