-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
103 lines (103 loc) · 3.16 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "dahlia-ah-frontend",
"version": "1.0.0",
"description": "Team Dahlia front-end implementation of Author's Haven",
"main": "index.js",
"scripts": {
"start": "node ./server/server.js",
"test": "jest --forceExit --verbose --coverage",
"dev": "webpack-dev-server --config webpack.config.development.js",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production webpack -p --config webpack.config.production.js",
"heroku-postbuild": "npm run build",
"lint": "eslint src",
"e2e": "node_modules/.bin/cypress open",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela/dahlia-ah-frontend.git"
},
"author": "andela",
"license": "ISC",
"bugs": {
"url": "https://github.com/andela/dahlia-ah-frontend/issues"
},
"homepage": "https://github.com/andela/dahlia-ah-frontend#readme",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@ckeditor/ckeditor5-build-classic": "^12.4.0",
"axios": "^0.19.0",
"ckeditor-cloudinary-uploader-adapter": "^1.1.3",
"cssnano": "^4.1.10",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"express": "^4.17.1",
"jwt-decode": "^2.2.0",
"materialize-css": "^1.0.0",
"moment": "^2.24.0",
"postcss-preset-env": "^6.7.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-cosmos-localstorage-proxy": "^4.8.2",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.12.11",
"react-router-dom": "^5.0.1",
"react-router-prop-types": "^1.0.4",
"socket.io-client": "^2.2.0",
"react-select": "^3.0.4",
"validator": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react-hooks": "^2.0.1",
"autoprefixer": "^9.6.1",
"axios-mock-adapter": "^1.17.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.6",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"cypress": "^3.4.1",
"dotenv": "^8.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-localstorage-mock": "^2.4.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.0",
"sass-loader": "^7.3.1",
"sinon": "^7.4.2",
"style-loader": "^1.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
],
"roots": [
"<rootDir>/src/"
],
"verbose": true,
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/src/config/assetsTransformer.js"
},
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/src/config/assetsTransformer.js",
"<rootDir>/(build|docs|node_modules)/"
]
}
}