This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.48 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
{
"name": "year-in-pixels",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "REMOVE_CONSOLE=1 react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"preanalyze": "react-app-rewired build",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"lint": "tslint -p tsconfig.json -c tslint.json --fix"
},
"dependencies": {
"antd": "^4.3.0",
"d3-ease": "^1.0.6",
"firebase": "^7.14.6",
"lodash": "^4.17.15",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-app-rewired": "^2.1.6",
"react-burger-menu": "^2.6.14",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-helmet-async": "^1.0.6",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-spring": "8.0.27",
"reactour": "^1.17.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-do-expressions": "^7.10.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-proposal-pipeline-operator": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-spread": "^7.10.1",
"@types/lodash": "^4.14.154",
"@types/moment": "^2.13.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"babel-plugin-import": "^1.13.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"customize-cra": "^1.0.0",
"husky": "^4.2.5",
"less": "3.11.1",
"less-loader": "5.0.0",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"source-map-explorer": "^2.4.2",
"tslint": "^6.1.2",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0",
"typescript": "3.9.3",
"webpackbar": "4.0.0"
},
"lint-staged": {
"pre-commit": [
"npm run lint",
"git add ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"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"
]
}
}