-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.85 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.85 KB
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
{
"name": "turing-frontend",
"version": "1.0.0",
"description": "The frontend implementation of turing backend ecommerce app in react/redux",
"main": "index.js",
"scripts": {
"heroku-postbuild": "rimraf dist && npm run build",
"build": "webpack --config webpack.config.prod.js",
"start": "node index.js",
"lint": "eslint ./src/index.js",
"dev-server": "webpack-dev-server --config webpack.config.dev.js --watch --open --hot",
"test": "jest --config=jest.config.json src/tests --coverage"
},
"engines": {
"node": "8.11.4"
},
"author": "Adeoye Peter",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-classes": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"dotenv": "^6.2.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"expect": "^23.6.0",
"file-loader": "^2.0.0",
"jest": "^23.6.0",
"moxios": "^0.4.0",
"nightwatch": "^0.9.21",
"node-sass": "^4.9.3",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.1.0",
"sinon": "^6.3.5",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"cookies-js": "^1.2.3",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"express": "^4.16.3",
"express-urlrewrite": "^1.2.0",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"query-string": "^5.1.1",
"raf": "^3.4.0",
"react": "^16.8.4",
"react-cookie": "^3.0.4",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.0",
"react-html-parser": "^2.0.2",
"react-js-pagination": "^3.0.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-stripe-checkout": "^2.6.3",
"react-tagsinput": "^3.19.0",
"recompose": "^0.30.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0",
"sanitize-html": "^1.19.1",
"thunk": "0.0.1",
"toastr": "^2.1.4",
"uglifyjs-webpack-plugin": "^2.0.1",
"validatorjs": "^3.14.2",
"webpack": "^4.29.6",
"webpack-merge": "^4.2.1"
}
}