-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 3.14 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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "lookingatyou",
"version": "0.1.0",
"private": true,
"homepage": ".",
"devDependencies": {
"@types/enzyme": "^3.9.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/enzyme-to-json": "^1.5.3",
"@types/jest": "24.0.14",
"@types/jsdom": "^12.2.3",
"@types/node": "12.0.8",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@types/react-redux": "^7.1.0",
"@types/redux-mock-store": "^1.0.1",
"@types/tinycolor2": "^1.4.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"jsdom": "^15.1.1",
"prettier": "^1.18.2",
"react-fast-compare": "^2.0.4",
"redux-devtools": "^3.5.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "3.5.1"
},
"dependencies": {
"@material-ui/core": "^4.3.1",
"@material-ui/styles": "^4.3.0",
"@tensorflow-models/posenet": "2.1.0",
"@tensorflow/tfjs": "^1.2.1",
"@types/color-convert": "^1.9.0",
"@types/lodash": "^4.14.137",
"@types/react-color": "^3.0.1",
"@types/react-tooltip": "^3.9.3",
"color-convert": "^2.0.0",
"lodash": "^4.17.15",
"react": "^16.8.6",
"react-color": "^2.17.3",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-scripts": "3.0.1",
"react-tooltip": "^3.10.0",
"reactjs-popup": "^1.4.2",
"redux": "^4.0.1",
"redux-localstorage-simple": "^2.1.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"tinycolor2": "^1.4.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/tslint -p .",
"coverage": "rm -r coverage && react-scripts test --coverage --watchAll=false"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "MIT",
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.tsx",
"src/**/*.ts",
"!<rootDir>/src/index.tsx",
"!<rootDir>/src/serviceWorker.ts",
"!<rootDir>/src/store/store.ts",
"!<rootDir>/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"coverageReporters": [
"html"
]
}
}