-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.17 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.17 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
95
96
97
98
99
{
"name": "@tmqps78/react-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"test:cover": "npm run test --coverage",
"test:clean": "rm -rf ./coverage",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.config.prod.js --color --progress",
"build:clean": "rm -rf ./dist",
"start": "cross-env NODE_ENV=development node server",
"start:nodemon": "cross-env NODE_ENV=development nodemon server",
"start:production": "npm run build && npm run start:prod",
"start:prod": "cross-env NODE_ENV=production node server",
"start:forever": "cross-env NODE_ENV=production forever start server",
"clean:all": "npm run test:clean && npm run build:clean"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cross-env": "^5.1.3",
"css-loader": "^0.28.10",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.9",
"html-webpack-plugin": "^3.2.0",
"immutability-helper": "^2.6.6",
"jest": "^22.4.2",
"jsonwebtoken": "^8.2.1",
"mini-css-extract-plugin": "^0.4.1",
"mongoose": "^5.0.12",
"node": "^9.5.0",
"node-sass": "^4.9.2",
"nodemon": "^1.17.5",
"postcss-loader": "^2.1.1",
"prop-types": "^15.6.0",
"react-hot-loader": "^3.1.3",
"redux-immutable-state-invariant": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^0.6.2",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.21.0"
},
"dependencies": {
"@material-ui/core": "^1.2.0",
"axios": "^0.18.0",
"bcrypt": "^2.0.1",
"brace": "^0.11.1",
"chalk": "^2.3.1",
"date-fns": "^1.29.0",
"draft-js": "^0.10.5",
"draft-js-emoji-plugin": "^2.0.6",
"draft-js-plugins-editor": "^2.0.8",
"history": "^4.7.2",
"immutable-js": "^0.3.1-6",
"lodash": "^4.17.5",
"lottie-web": "^5.1.20",
"qs": "^6.5.2",
"react": "^16.3.1",
"react-ace": "^6.1.1",
"react-dom": "^16.2.0",
"react-icons": "^2.2.7",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.3.1",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"styled-components": "^3.2.5"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tools/mocks/fileMock.js",
".*\\.(css|less|styl|scss|sass)$": "<rootDir>/tools/mocks/cssMock.js"
}
}
}