forked from getkirby/getkirby.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.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
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
{
"name": "getkirby.com",
"version": "3.0.0",
"description": "The entire getkirby.com website.",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "./node_modules/.bin/stylelint ./src/scss/**/*.scss && ./node_modules/.bin/eslint ./src/js/",
"backstop-config": "./scripts/backstop-config",
"backstop-reference": "npm run build && backstop reference",
"backstop-test": "npm run build && backstop test",
"backstop-report": "backstop openReport"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bastianallgeier/v3.getkirby.com.git"
},
"author": "The Kirby Team <[email protected]>",
"license": "SEE LICENSE IN license.md",
"bugs": {
"url": "https://github.com/bastianallgeier/v3.getkirby.com/issues"
},
"homepage": "https://github.com/bastianallgeier/v3.getkirby.com#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"backstopjs": "^3.8.8",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"cross-env": "^5.2.0",
"eslint": "^5",
"extend": "^3.0.2",
"laravel-mix": "^2.1.14",
"postcss-calc": "^7",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.1.0",
"stylelint-scss": "^3.5.4"
},
"dependencies": {
"algoliasearch": "^3.32.1",
"awesomplete": "^1.1.4",
"clipboard": "^2",
"es6-promise": "^4.2.6",
"focus-visible": "^4.1.5",
"lazysizes": "^4.1.8",
"list.js": "^1.5.0",
"respimage": "^1.4.2",
"smoothscroll-polyfill": "^0.4.4",
"svgo": "^1.2.0",
"svgxuse": "^1.2.6",
"tippy.js": "^4.2.1"
},
"eslintConfig": {
"root": true,
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"quotes": [
"error",
"double",
{
"avoidEscape": true
}
]
}
}
}