-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.23 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.23 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
{
"name": "time-to-quit",
"version": "1.0.0",
"description": "QST - quit smoking time",
"main": "index.js",
"scripts": {
"_dev": "webpack-dev-server --port 3000 --config configs/webpack.config.dev.js",
"_build": "rm -rf ./dist && webpack --progress --config configs/webpack.config.prod.js",
"webpack-client": "webpack --config webpack/webpack.client.js",
"webpack-server": "webpack --config webpack/webpack.server.js",
"webpack": "concurrently \"yarn webpack-server\" \"yarn webpack-client\"",
"release": "cross-env NODE_ENV=production yarn build",
"build": "yarn webpack",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydrock-it/time-to-quit.git"
},
"author": "Aleksey Vechkanov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hydrock-it/time-to-quit/issues"
},
"homepage": "https://github.com/hydrock-it/time-to-quit#readme",
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.1",
"cross-env": "^5.2.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"morgan": "^1.9.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"redux-devtools-extension": "^2.13.8",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}