-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.57 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
115
116
117
118
119
120
121
122
123
{
"name": "onto-real-life",
"version": "0.0.1",
"private": false,
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack serve",
"build-gallery": "node utils/generate-photo-gallery.js",
"build": "rm -rf ./build && cross-env NODE_ENV=\"production\" webpack --mode production",
"lint": "eslint ./source/js ./webpack.config.js -f table --ext .js --ext .jsx --fix"
},
"browsers": [
"last 3 version",
"ie >= 10"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"acorn": "^8.0.4",
"ajv": "^7.0.2",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-runtime": "^6.26.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"ejs-loader": "^0.5.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": ">=7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"fs": "0.0.1-security",
"html-webpack-plugin": "^4.5.0",
"install": "^0.13.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jsdom": "^16.4.0",
"lodash": "^4.17.20",
"mini-css-extract-plugin": "^1.3.3",
"node-fetch": "^2.6.1",
"node-sass": "^5.0.0",
"npm": "^7.3.0",
"postcss-loader": "^4.1.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react-router": "^5.2.0",
"react-test-renderer": "^17.0.1",
"sass-loader": "^10.1.0",
"static-site-generator-webpack-plugin": "^3.4.2",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/runtime": "^7.12.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"caniuse-lite": "^1.0.30001282",
"classnames": "^2.2.6",
"debounce": "^1.2.0",
"es6-promise": "^4.2.8",
"immutable": "^3.8.1",
"isomorphic-fetch": "^3.0.0",
"jquery": "^3.5.1",
"lazysizes": "^5.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-froala-wysiwyg": "^3.2.5",
"react-router-dom": "^5.2.0"
},
"description": "Simplistic Travel Blog",
"repository": {
"type": "git",
"url": "https://github.com/syneva-runyan/onto-real-life.git"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"source/js/**/*.{js,jsx}",
"!source/js/routes.js",
"!source/js/**/index.js",
"!source/js/dev/**"
],
"coverageDirectory": "tests/coverage",
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/tests/__mocks__/styleMock.js"
},
"setupFiles": [
"<rootDir>/tests/raf-temp-mock.js",
"<rootDir>/tests/test-env.js"
]
},
"keywords": [
"react",
"webpack2"
],
"author": "syneva-runyan",
"bugs": {
"url": "https://github.com/syneva-runyan/onto-real-life/issues"
},
"homepage": "https://github.com/syneva-runyan/onto-real-life#readme",
"prepush": [
"npm run lint-break-on-errors"
]
}