forked from HR-FEC-Lego/Main-Product-Description
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.31 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
{
"name": "main-product-description",
"version": "1.0.0",
"description": "Product Description / Shopping Options. NOT product image gallery.",
"main": "server.js",
"scripts": {
"build": "webpack --watch",
"nodemonRun": "nodemon server/server.js",
"start": "npm run build & npm run nodemonRun",
"test": "jest",
"giveMeData": "node dataMaker.js"
},
"jest": {
"modulePaths": [
"/client/dist"
],
"setupFilesAfterEnv": [
"<rootDir>enzymeConfig.js",
"jest-enzyme"
],
"testEnvironment": "enzyme",
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"transform": {
"\\.[jt]sx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CaytonCodes/Main-Product-Description.git"
},
"author": "Scotty Cayton",
"license": "ISC",
"bugs": {
"url": "https://github.com/CaytonCodes/Main-Product-Description/issues"
},
"homepage": "https://github.com/CaytonCodes/Main-Product-Description#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"nodemon": "^2.0.7",
"sass": "^1.32.5",
"style-loader": "^2.0.0",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"jquery": "^3.5.1",
"mysql": "^2.18.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"sass-loader": "^10.1.1"
}
}