-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.77 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
{
"name": "fec",
"version": "1.0.0",
"description": "This is a product page renderer.",
"main": "index.js",
"scripts": {
"test": "jest --collectCoverage",
"server-dev": "nodemon server/index.js",
"build": "webpack -w",
"test-jest": "jest",
"start": "webpack && node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Weyland-Software-Group/fec.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Weyland-Software-Group/fec/issues"
},
"homepage": "https://github.com/Weyland-Software-Group/fec#readme",
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"jest": "^26.6.3",
"jquery": "^3.6.0",
"moment": "^2.29.1",
"nodemon": "^2.0.7",
"react": "^17.0.2",
"react-dev": "^0.0.1",
"react-dom": "^16.14.0",
"react-icons": "^4.2.0",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.7",
"styled-components": "^5.2.3",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"babel-loader": "^8.2.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^26.6.3"
},
"jest": {
"setupFiles": [
"<rootDir>/testingSuite/setup-jest.js"
],
"setupFilesAfterEnv": [
"<rootDir>/testingSuite/setup.js"
]
}
}