This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 1.91 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
{
"homepage": "https://now-u.com/",
"name": "now-u-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"classnames": "^2.2.6",
"jest-dom": "^4.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-facebook-pixel": "^0.1.3",
"react-ga": "^2.7.0",
"react-gtm-module": "^2.0.8",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.7",
"react-player": "^2.0.1",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^1.2.2",
"react-scripts": "5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint '**/*.{js,jsx}' --fix",
"test": "react-scripts test",
"test:watch": "jest --watchAll --verbose",
"test:coverage": "jest --verbose --coverage"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-optional-chaining"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"node-sass": "^7.0.3",
"prettier": "^2.0.5",
"react-app-rewired": "^2.1.6"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}