-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.49 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
{
"name": "template",
"private": true,
"version": "0.0.0",
"description": "Webpack - The Good Parts",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf dist",
"build":
"NODE_ENV=production webpack --config webpack.config.production.js",
"lint": "eslint --ext .js,.jsx .",
"deploy": "npm run build && npm run copy && gh-pages -d out",
"copy":
"rm -rf out && mkdir -p out && cp index.html out/ && cp -rf images out/images && cp -rf dist out/dist",
"start": "NODE_ENV=development node server.js"
},
"author": "Juho Vepsäläinen",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4",
"normalize.css": "7.0.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"spectacle": "^4.0.4"
},
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-config-formidable": "^3.0.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"file-loader": "^1.1.5",
"gh-pages": "^1.1.0",
"html-loader": "^0.5.1",
"is-buffer": "^1.1.6",
"markdown-loader": "^2.0.1",
"markdown-to-react-components": "^0.2.4",
"node-libs-browser": "^2.1.0",
"raw-loader": "^0.5.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.5.0",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
}
}