-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.83 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
{
"name": "artemis-ah-frontend",
"version": "1.0.0",
"description": "Authors Haven - A Social platform for the creative at heart.",
"main": "index.js",
"scripts": {
"start": "babel-node index",
"build": "rm -rf dist && webpack --mode production --env.production",
"serve": " npm run build && npm run start",
"start:dev": "webpack-dev-server --mode development --open --env.NODE_ENV=local",
"heroku-postbuild": "rm -rf dist && NPM_CONFIG_PRODUCTION=false npm run build",
"test": "jest ./src/__tests__ --coverage --no-cache -u --detectOpenHandles --forceExit",
"nightwatch": "nightwatch -c tests/nightwatch.conf.js -e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela/artemis-ah-frontend.git"
},
"author": "Artemis Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/andela/artemis-ah-frontend/issues"
},
"homepage": "https://github.com/andela/artemis-ah-frontend#readme",
"dependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"css-loader": "^2.1.1",
"dotenv": "^7.0.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"express": "^4.16.4",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"mini-css-extract-plugin": "^0.5.0",
"moment": "^2.24.0",
"moxios": "^0.4.0",
"nuka-carousel": "^4.5.3",
"prop-types": "^15.7.2",
"pusher-js": "^4.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.3",
"react-highlight-pop": "^1.0.2",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-select": "^2.4.2",
"react-toastify": "^5.1.0",
"reading-time": "^1.1.3",
"redux": "^4.0.1",
"redux-promise": "^0.6.0",
"regenerator-runtime": "^0.13.2",
"sinon": "^7.3.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"devDependencies": {
"babel-jest": "^24.7.1",
"chromedriver": "^2.46.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.7.1",
"nightwatch": "^1.0.19",
"node-sass": "^4.12.0",
"react-test-renderer": "^16.8.6",
"regenerator-runtime": "^0.13.2",
"sass-loader": "^7.1.0",
"selenium-server": "^3.141.59",
"style-loader": "^0.23.1"
}
}