-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.33 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "webpack-react-css-modules-ssr",
"version": "0.1.0",
"description": "A basic project with Webpack, React, CSS Modules and Server Side Rendering.",
"private": true,
"main": "site/index.js",
"scripts": {
"prebuild": "rm -fr ./dist && npm run lint",
"build": "webpack",
"build:changelog": "conventional-changelog -p angular -i ./CHANGELOG.md -s -r 0",
"watch": "webpack --watch",
"start": "nodemon ./dist/server/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "git-cz",
"postcommit": "npm run lint:commit",
"lint": "npm run lint:styles && npm run lint:scripts",
"lint:commit": "conventional-changelog-lint -e",
"lint:styles": "stylelint './src/styles/**.css'",
"lint:scripts": "eslint ./src/scripts/**",
"bump": "conventional-recommended-bump -p angular"
},
"repository": {
"type": "git",
"url": "https://github.com/MartinHelmut/webpack-react-css-modules-ssr.git"
},
"keywords": [
"Webpack",
"React",
"CSS Modules",
"Server Side Rendering"
],
"author": "Martin Helmut Fieber <[email protected]>",
"license": "MIT",
"homepage": "http://martin-fieber.de",
"bugs": "https://github.com/MartinHelmut/webpack-react-css-modules-ssr/issues",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.8.0"
},
"dependencies": {
"express": "^4.13.4",
"lodash.template": "^4.2.4",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-router": "^2.4.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-proto-to-assign": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-strict-mode": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"browser-sync": "^2.12.5",
"browser-sync-webpack-plugin": "^1.0.1",
"commitizen": "^2.8.1",
"conventional-changelog-cli": "^1.1.1",
"conventional-changelog-lint": "^0.3.4",
"conventional-recommended-bump": "^0.2.1",
"copy-webpack-plugin": "^2.1.3",
"css-loader": "^0.23.1",
"cssnano": "^3.5.2",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^2.9.0",
"eslint-config-xo": "^0.14.1",
"eslint-config-xo-react": "^0.7.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"i": "^0.3.5",
"nodemon": "^1.9.2",
"npm": "^3.9.5",
"postcss": "^5.0.21",
"postcss-cssnext": "^2.5.2",
"postcss-custom-properties": "^5.0.1",
"postcss-extend": "^1.0.1",
"postcss-import": "^8.1.1",
"postcss-loader": "^0.9.1",
"postcss-strip-units": "^1.2.0",
"style-loader": "^0.13.1",
"stylelint": "^6.2.2",
"stylelint-config-standard": "^6.0.0",
"webpack": "^1.13.0"
},
"pearDependencies": {
"eslint": ">=2.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}