-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"name": "signo",
"version": "1.0.0",
"description": "Temporary description",
"main": "gulpfile.babel.js",
"scripts": {
"markdownlint": "./node_modules/.bin/markdownlint src/markdown/*.md || exit 0",
"eslint": "./node_modules/.bin/eslint src/js/** || exit 0",
"lint": "npm run markdownlint && npm run eslint",
"clean": "rm -rf build/*",
"dev": "npm run lint && npm run clean && gulp dev --type dev --env=dev",
"build": "npm run lint && npm run clean && gulp build --type prod",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "https://github.com/mathieudelvaux/signo.git"
},
"author": "mathieudelvaux <[email protected]> (https://mathieudelvaux.be)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mathieudelvaux/signo/issues"
},
"homepage": "https://github.com/mathieudelvaux/signo",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-env": "^1.1.10",
"babel-preset-es2015": "^6.24.1",
"cheerio": "^1.0.0-rc.1",
"copy-webpack-plugin": "^4.0.1",
"elasticsearch": "^13.0.1",
"eslint": "^3.19.0",
"express": "^4.15.3",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean-css": "^3.0.4",
"gulp-concat": "^2.6.1",
"gulp-file-include": "^1.1.0",
"gulp-font2css": "^0.1.2",
"gulp-imagemin": "^3.2.0",
"gulp-markdown": "^1.2.0",
"gulp-md-template": "^1.1.2",
"gulp-preprocess": "^2.0.0",
"gulp-sass": "^3.1.0",
"gulp-sitemap": "^4.2.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^2.1.2",
"gulp-util": "^3.0.8",
"ityped": "0.0.10",
"markdown": "^0.5.0",
"markdownlint-cli": "^0.3.1",
"scrollreveal": "^3.3.5",
"superagent": "^3.5.2",
"through2": "^2.0.3",
"uuid": "^3.0.1",
"webpack": "^2.5.0",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"anchor-scroll": "^2.0.0",
"clipboard-js": "^0.3.3",
"headroom.js": "^0.9.3",
"in-view": "^0.6.1",
"storm-scroll-to": "^1.0.6",
"tinycolor2": "^1.4.1"
}
}