forked from forestryio/forestry.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.47 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
103
{
"name": "forestry.io",
"version": "1.0.0",
"description": "The Forestry.io Website",
"repository": "https://github.com/forestryio/forestry.io",
"author": "forestryio",
"main": "gulpfile.js",
"private": true,
"scripts": {
"start": "gulp server",
"preview": "cross-env NODE_ENV=production GENERATOR_ARGS=preview gulp server",
"forestry:preview": "cross-env NODE_ENV=production GENERATOR_ARGS=development gulp build",
"forestry:instant-preview": "cross-env NODE_ENV=production GENERATOR_ARGS=instantPreview gulp server",
"build": "cross-env NODE_ENV=production gulp build",
"preDeploy": "cross-env NODE_ENV=production gulp preDeploy",
"clean": "gulp clean",
"eslint": "./node_modules/eslint/bin/eslint.js src/js/ --ext .js",
"eslint:fix": "./node_modules/eslint/bin/eslint.js src/js/ --ext .js --fix",
"stylelint": "npm run stylelint:css && npm run stylelint:scss",
"stylelint:fix": "npm run stylelint:css --fix && npm run stylelint:scss --fix",
"stylelint:css": "./node_modules/stylelint/bin/stylelint.js src/css/**/*.css",
"stylelint:scss": "./node_modules/stylelint/bin/stylelint.js src/scss/**/*.scss",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"algoliasearch": "^3.24.8",
"atomic-algolia": "^0.2.1",
"axios": "^0.18.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"browser-sync": "^2.26.5",
"chalk": "^2.3.0",
"clipboard": "^1.7.1",
"compression": "^1.7.1",
"content-loaded": "^1.1.0",
"cross-env": "^5.1.1",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"del": "^3.0.0",
"dotenv": "^5.0.0",
"eqcss": "^1.8.0",
"exports-loader": "^0.6.3",
"gulp": "^4.0.1",
"gulp-babel": "^6.1.2",
"gulp-debounce": "^1.0.2",
"gulp-imagemin": "^5.0.3",
"gulp-newer": "^1.3.0",
"gulp-postcss": "^6.1.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-svg-sprite": "^1.5.0",
"gumshoejs": "^5.0.1",
"highlight.js": "^9.12.0",
"html-loader": "^0.5.1",
"hugo-bin": "^0.39.0",
"laggard": "^2.0.1",
"lazysizes": "^4.0.1",
"ldclient-js": "^2.7.3",
"postcss-browser-reporter": "^0.5.0",
"postcss-cachebuster": "^0.1.5",
"postcss-cssnext": "^2.7.0",
"postcss-reporter": "^5.0.0",
"postcss-sass": "^0.3.0",
"postcss-scss": "^1.0.2",
"precss": "^2.0.0",
"run-sequence": "^2.2.0",
"shufflejs": "^5.2.2",
"smoothscroll-polyfill": "^0.4.0",
"stickyfilljs": "^2.0.3",
"through2": "^2.0.3",
"vinyl-named": "^1.1.0",
"webpack": "3.6.0",
"webpack-stream": "^4.0.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"imports-loader": "^0.8.0",
"lint-staged": "^6.0.0",
"prettier": "1.19.1",
"stylelint": "^10.0.1",
"stylelint-config-sass-guidelines": "^4.0.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-no-unsupported-browser-features": "^1.0.1",
"stylelint-order": "^0.8.0",
"stylelint-scss": "^2.2.0"
}
}