-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.39 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
{
"name": "react-webpack-babel-starter",
"version": "0.1.0",
"description": "Starter kit for React, Webpack (with Hot Module Replacement) and Babel.",
"keywords": [
"react",
"webpack",
"babel",
"sass",
"hmr",
"starter",
"boilerplate"
],
"author": "Viktor Persson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vikpe/react-webpack-babel-starter.git"
},
"bugs": {
"url": "https://github.com/vikpe/react-webpack-babel-starter/issues"
},
"homepage": "https://github.com/vikpe/react-webpack-babel-starter",
"scripts": {
"build": "npm run clean-dist && webpack -p --config=configs/webpack/prod",
"clean-dist": "rm -f -r -d dist",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "jshint",
"lint:sass": "stylelint ./src/**/*.scss",
"start": "npm run start-dev",
"start-dev": "webpack-dev-server --config=configs/webpack/dev",
"start-prod": "npm run build && node express.js",
"test": "jest --watch --coverage --config=configs/jest.json"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.5",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^4.3.1",
"jest": "^23.2.0",
"jshint": "^2.9.5",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"react": "^16.4.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"md5": "^2.2.1",
"mongodb": "^3.1.0",
"mongoose": "^5.2.1"
},
"postcss": {}
}