-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.18 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
{
"name": "fec",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-server": "nodemon server/index.js",
"build": "webpack",
"watch": "webpack -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jverploeg/fec.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jverploeg/fec/issues"
},
"homepage": "https://github.com/jverploeg/fec#readme",
"dependencies": {
"@babel/runtime": "^7.13.9",
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"puppeteer": "^8.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"store2": "^2.12.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"bulma": "^0.9.2",
"bulma-modal-fx": "^1.1.1",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^7.1.2",
"css-loader": "^5.1.1",
"enzyme": "^3.11.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"express-static-gzip": "^2.1.1",
"file-loader": "^6.2.0",
"html-loader": "^2.1.1",
"html-webpack-plugin": "^5.2.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"jest": {
"setupFilesAfterEnv": [
"./setupTest.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared",
"src"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}