-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.44 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": "katathon",
"version": "1.0.0",
"description": "a website for katathon participants",
"main": "app.js",
"scripts": {
"build": "webpack --progress --color --config webpack.prod.config.js",
"dev": "nodemon server/index.js",
"test": "jest",
"test:watch": "jest --watch",
"precommit": "eslint src server --ext=jsx --ext=js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiacomoSorbi/Katathon.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GiacomoSorbi/Katathon/issues"
},
"homepage": "https://github.com/GiacomoSorbi/Katathon#readme",
"jest": {
"setupTestFrameworkScriptFile": "./test/setup.js",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"^.+\\.(css|scss|png)$": "<rootDir>/test/cssStub.js",
"app/(.*)$": "<rootDir>/src/$1"
}
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"mongoose": "^5.2.17",
"node-schedule": "^1.3.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.15",
"jest": "^23.6.0",
"node-sass": "^4.9.3",
"nodemon": "^1.18.4",
"react-hot-loader": "^4.3.11",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1",
"webpack-dev-middleware": "^3.3.0",
"webpack-hot-middleware": "^2.24.2"
}
}