-
Notifications
You must be signed in to change notification settings - Fork 174
/
package.json
106 lines (106 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
104
105
106
{
"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",
"stylelint:fix": "npm run stylelint:css --fix",
"stylelint:css": "./node_modules/stylelint/bin/stylelint.js src/css/**/*.css",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"algoliasearch": "^3.35.1",
"atomic-algolia": "^0.3.19",
"axios": "^0.21.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^7.1.5",
"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.13",
"chalk": "^4.1.0",
"clipboard": "^2.0.7",
"compression": "^1.7.4",
"content-loaded": "^1.2.1",
"cross-env": "^7.0.3",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"dotenv": "^5.0.1",
"eqcss": "^1.9.2",
"exports-loader": "^0.6.3",
"gulp": "^4.0.2",
"gulp-debounce": "^1.0.2",
"gulp-imagemin": "^7.1.0",
"gulp-newer": "^1.4.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-svg-sprite": "^1.5.0",
"gumshoejs": "^5.1.2",
"highlight.js": "^9.18.5",
"html-loader": "^0.5.5",
"hugo-bin": "^0.69.0",
"laggard": "^2.0.1",
"lazysizes": "^5.2.1",
"ldclient-js": "^2.10.2",
"postcss": "^5.2.17",
"postcss-browser-reporter": "^0.6.0",
"postcss-cachebuster": "^0.1.6",
"postcss-cssnext": "^3.1.0",
"postcss-reporter": "^6.0.1",
"postcss-sass": "^0.4.4",
"postcss-scss": "^2.1.1",
"precss": "^4.0.0",
"run-sequence": "^2.2.1",
"shufflejs": "^5.2.3",
"smoothscroll-polyfill": "^0.4.4",
"stickyfilljs": "^2.1.0",
"through2": "^2.0.5",
"vinyl-named": "^1.1.0",
"webpack": "3.12.0",
"webpack-stream": "^4.0.3",
"whatwg-fetch": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"browserslist": "^4.16.5",
"caniuse-lite": "^1.0.30001197",
"eslint": "^4.19.1",
"eslint-plugin-compat": "^2.7.0",
"eslint-plugin-import": "^2.21.2",
"gulp-babel": "^7.0.1",
"husky": "^4.2.5",
"imports-loader": "^0.8.0",
"lint-staged": "^10.2.10",
"prettier": "^2.0.5",
"stylelint": "^13.6.0",
"stylelint-config-sass-guidelines": "^ 7.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.17.2"
}
}