forked from pwmckenna/til
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.18 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.18 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
{
"name": "pwmckenna.github.io",
"version": "1.0.0",
"description": "Things I Learned",
"main": "webpack.config.js",
"dependencies": {
"bootstrap": "^3.3.6",
"classnames": "^2.2.3",
"font-awesome": "^4.5.0",
"highlight.js": "^9.0.0",
"history": "^1.17.0",
"jquery": "^2.1.4",
"marked": "^0.3.5",
"moment": "^2.10.6",
"react": "^0.14.5",
"react-addons-css-transition-group": "^0.14.5",
"react-dom": "^0.14.3",
"react-responsive": "^1.0.1",
"react-router": "^2.0.0-rc4",
"react-spinkit": "^1.1.4"
},
"devDependencies": {
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-config-pwmckenna": "^1.0.3",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-react": "^3.12.0",
"eslint-plugin-standard": "^1.3.1",
"file-loader": "^0.8.5",
"gh-pages": "^0.8.0",
"json-loader": "^0.5.4",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"pre-commit": "^1.1.2",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"rimraf": "^2.5.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "^1.14.0",
"webpack-hot-middleware": "^2.6.0"
},
"scripts": {
"clean": "rimraf build/bundle.js build/bundle.js.map",
"lint": "eslint app --ext .js --ext .jsx",
"dev": "node server",
"build": "npm run clean && NODE_ENV=production webpack -p --config webpack.production.config.js --progress",
"deploy": "npm run build && gh-pages -d build"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pwmckenna/til.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pwmckenna/til/issues"
},
"homepage": "https://github.com/pwmckenna/til#readme"
}