-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.79 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
{
"name": "sexplainer",
"license": "AGPL-3.0",
"repository": "git://github.com/nyaruka/sessionexplain.git",
"version": "0.2.0",
"private": true,
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"prettify": "prettier --write 'src/**/*.{ts,tsx,json,js,css,md}'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageReporters": [
"text",
"lcov",
"json"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"lint-staged": {
"*.{ts,tsx,js,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^23.3.7",
"@types/node": "^10.12.0",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@typescript-eslint/eslint-plugin": "1.12.0",
"@typescript-eslint/parser": "1.12.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"enzyme-adapter-utils": "1.12.0",
"enzyme-to-json": "^3.3.4",
"eslint": "5.16.0",
"eslint-config-prettier": "6.0.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.18.2",
"react-scripts": "3.0.1",
"tslint": "5.17.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "^3.4.5"
}
}