-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.45 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.45 KB
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
{
"name": "react-iTunes-search",
"version": "2.3.0",
"description": "Simple web app for iTunes Search implemented with React",
"keywords": [
"react",
"iTunes",
"search",
"apple",
"babel",
"ES6"
],
"repository": {
"type": "git",
"url": ""
},
"author": "Robert Fall",
"license": "MIT",
"scripts": {
"coverage": "jest --coverage",
"jest:watch": "jest --watch",
"test": "npm run lint && npm run flow && npm run jest",
"jest:update": "jest --u test/unit",
"jest": "jest test/unit",
"flow": "flow",
"clean": "rimraf dist/",
"build": "webpack --config webpack.config.js",
"dev": "webpack serve --config webpack.config.js",
"deploy": "npm run clean && npm run build",
"lint": "eslint src/** webpack/** test/**",
"start": "npm run dev"
},
"dependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"babel-polyfill": "^6.26.0",
"classnames": "^2.3.2",
"core-js": "^3.39.0",
"fecha": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/preset-flow": "^7.25.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-stage-0": "^7.8.3",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.3",
"css-loader": "^6.11.0",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"flow-bin": "^0.205.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.4",
"postcss-loader": "^7.3.4",
"prettier": "^3.0.0",
"raf": "^3.4.1",
"rimraf": "^5.0.1",
"style-loader": "^3.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.8.0"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./test/unit/jest-setup.js"
],
"collectCoverageFrom": [
"src/**.js",
"!src/index.js",
"!src/type.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}