-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.03 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
105
106
107
108
109
110
111
112
113
114
{
"name": "appliedmovies",
"version": "0.1.0",
"main": "src/index.jsx",
"repository": "[email protected]:Geebrox/AppliedMovies.git",
"author": "bek <[email protected]>",
"license": "MIT",
"private": false,
"fonts": [
{
"name": "Inter",
"variants": [
400,
600,
700
]
},
{
"name": "Playfair Display",
"variants": [
400,
700
]
},
{
"name": "Roboto",
"variants": [
400
]
}
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"build:netlify": "cross-env NODE_ENV=production NETLIFY=true webpack",
"cy:cache": "cypress cache path && cypress cache list && cypress verify",
"cy:dev": "cross-env NODE_ENV=test webpack-dev-server",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:report": "nyc report --reporter=text --reporter=text-summary",
"cy:ci": "concurrently -k \"yarn cy:dev\" \"yarn cy:run\" -s first",
"lint:es": "eslint ./src/**/*.jsx",
"lint:fix:es": "eslint --fix ./src/**/*.jsx"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx)": [
"yarn lint:fix:es",
"git add"
]
},
"dependencies": {
"axios": "^0.20.0",
"core-js": "^3.6.5",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet-async": "^1.0.7",
"react-router-dom": "^5.2.0",
"react-swipeable": "^5.5.1",
"react-transition-group": "^4.4.1",
"regenerator-runtime": "^0.13.7",
"tailwindcss": "^1.8.10"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@cypress/code-coverage": "^3.8.1",
"autoprefixer": "^10.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-object-to-json-parse": "^0.2.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"cypress": "^5.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.9.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"istanbul-lib-coverage": "^3.0.0",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"nyc": "^15.1.0",
"postcss": "8.0.6",
"postcss-loader": "^4.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^3.0.0",
"sass-loader": "^10.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"tinify-loader": "^1.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
}
}