-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 3.24 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
104
105
106
107
108
{
"name": "hermes-ah-frontend",
"version": "1.0.0",
"description": "A platform to create article",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --mode development --open --hot",
"build": "NODE_ENV=production webpack -p",
"prettier:check": "prettier --check \"./src/**/*.jsx\"",
"prettier:fix": "prettier --write \"./src/**/*.jsx\"",
"eslint:check": "node_modules/eslint/bin/eslint.js \"src/**/*.jsx\"",
"check:lint-prettier": "npm run eslint:check && npm run prettier:check",
"pretest": "npm run check:lint-prettier",
"test": "jest --coverage",
"update-snapshot": "jest --coverage -u",
"test:watch": "jest --watch",
"nightwatch": "nightwatch -e chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela/hermes-ah-frontend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andela/hermes-ah-frontend/issues"
},
"homepage": "https://github.com/andela/hermes-ah-frontend#readme",
"dependencies": {
"audit": "0.0.6",
"axios": "^0.18.0",
"draft-js": "^0.10.5",
"draftjs-to-html": "^0.8.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"fix": "0.0.6",
"html-react-parser": "^0.7.0",
"jest-css-modules-transform": "^2.1.1",
"joi-browser": "^13.4.0",
"jwt-decode": "^2.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-cookie-consent": "^2.3.1",
"react-dom": "^16.8.6",
"react-draft-wysiwyg": "^1.13.2",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-test-renderer": "^16.8.6",
"react-timeago": "^4.4.0",
"react-toastify": "^5.1.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^0.86.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"chromedriver": "^74.0.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"fetch-mock": "^7.3.3",
"file-loader": "^3.0.1",
"geckodriver": "^1.16.2",
"husky": "^2.1.0",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"ng-faker": "^1.1.0",
"nightwatch": "^1.0.19",
"node-fetch": "^2.5.0",
"node-sass": "^4.12.0",
"prettier": "^1.17.0",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.1.0",
"selenium-server": "^3.141.59",
"style-loader": "^0.23.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,jsx,json,css,md}": [
"prettier --write",
"git add"
]
}
}