-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
{
"name": "longman-to-anki",
"version": "1.0.0",
"homepage": "https://yakhinvadim.github.io/longman-to-anki/",
"private": true,
"dependencies": {
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@types/enzyme": "3.10.3",
"@types/fetch-mock": "7.3.1",
"@types/file-saver": "2.0.1",
"@types/jest": "24.0.20",
"@types/json2csv": "4.5.0",
"@types/lodash": "4.14.144",
"@types/node": "12.11.7",
"@types/ramda": "0.26.33",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"fetch-mock": "7.5.1",
"file-saver": "2.0.2",
"gh-pages": "2.1.1",
"husky": "3.0.9",
"json2csv": "4.5.4",
"lint-staged": "9.4.2",
"lodash": "4.17.15",
"node-fetch": "2.6.0",
"prettier": "1.18.2",
"ramda": "0.26.1",
"react": "16.11.0",
"react-detect-offline": "2.4.0",
"react-dom": "16.11.0",
"react-github-corner": "2.3.0",
"react-scripts": "3.2.0",
"source-map-explorer": "2.1.0",
"typescript": "3.6.4"
},
"scripts": {
"start": "react-scripts --max_old_space_size=4096 start",
"build": "react-scripts --max_old_space_size=4096 build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test -- --watchAll=false"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --config .prettierrc.json --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}