-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.11 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
{
"name": "git-cheatsheet",
"version": "1.3.2",
"description": "A filterable cheatsheet for the Git version control system",
"scripts": {
"start": "webpack-dev-server --env=development --progress",
"build": "webpack --env=production -p --progress",
"build:serve": "npm run build && serve dist",
"deploy": "gh-pages -d dist",
"lint": "eslint src && stylelint src/**/*.scss",
"prebuild": "npm install && rimraf dist",
"predeploy": "npm run build",
"precommit": "npm run lint",
"postversion": "git push --follow-tags origin master && npm run deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/soyguijarro/git-cheatsheet.git"
},
"author": {
"name": "Ramón Guijarro",
"email": "[email protected]",
"url": "http://soyguijarro.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/soyguijarro/git-cheatsheet/issues"
},
"homepage": "https://github.com/soyguijarro/git-cheatsheet#readme",
"dependencies": {
"escape-string-regexp": "1.0.5",
"offline-plugin": "4.8.1",
"ramda": "0.24.1"
},
"devDependencies": {
"autoprefixer": "7.1.1",
"babel": "6.23.0",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-preset-env": "1.5.2",
"babel-preset-stage-2": "6.24.1",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.28.4",
"eslint": "4.1.1",
"eslint-config-airbnb-base": "11.2.0",
"eslint-loader": "1.8.0",
"eslint-plugin-import": "2.6.1",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "0.11.2",
"gh-pages": "1.0.0",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.29.0",
"husky": "0.14.2",
"image-webpack-loader": "3.3.1",
"node-sass": "4.5.3",
"normalize.css": "7.0.0",
"postcss-loader": "2.0.6",
"rimraf": "2.6.1",
"sass-loader": "6.0.6",
"serve": "6.0.0",
"style-loader": "0.18.2",
"stylelint": "7.12.0",
"stylelint-config-standard": "16.0.0",
"stylelint-webpack-plugin": "0.8.0",
"url-loader": "0.5.9",
"webpack": "3.0.0",
"webpack-dev-server": "2.5.0"
}
}