-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "jekyll-template",
"version": "2.0.0",
"description": "Optimized Jekyll template to get started in no time",
"scripts": {
"start": "BUILD_ENV=development webpack -w --config ./config/webpack/config.dev.js",
"build": "BUILD_ENV=production webpack --config ./config/webpack/config.prod.js",
"lint": "./node_modules/.bin/eslint . --color",
"lint:fix": "./node_modules/.bin/eslint . --color --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nimblehq/jekyll-templates.git"
},
"author": "Nimble",
"private": true,
"bugs": {
"url": "https://github.com/nimblehq/jekyll-templates/issues"
},
"homepage": "https://github.com/nimblehq/jekyll-templates#readme",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"@nimblehq/eslint-config-nimble": "2.1.1",
"eslint": "7.1.0"
},
"dependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.10.2",
"autoprefixer": "10.2.1",
"babel-loader": "8.1.0",
"postcss": "8.2.4",
"stimulus": "2.0.0",
"svg-spritemap-webpack-plugin": "3.5.6",
"tailwindcss": "2.0.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-shell-plugin": "0.5.0"
}
}