-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.38 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.38 KB
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
{
"name": "@strt/bricks",
"description": "A zero-configuration toolkit for building modern web apps",
"version": "2.19.2",
"author": "Strateg Marknadsföring AB <alexander.nanberg@strateg.se>",
"license": "MIT",
"repository": "github:strt/bricks",
"keywords": [
"bricks",
"toolkit",
"0CJS",
"zero-configuration"
],
"engines": {
"node": ">=8"
},
"files": [
"babel.js",
"bin",
"config",
"scripts",
"tasks",
"utils"
],
"bin": {
"bricks": "./bin/bricks.js"
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write **/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"arg": "^4.1.0",
"autoprefixer": "^9.1.3",
"babel-loader": "^8.0.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-macros": "^2.4.2",
"babel-plugin-transform-async-to-promises": "^0.8.9",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browser-sync": "^2.24.7",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"chalk": "^2.4.1",
"compression": "^1.7.3",
"core-js": "^3.0.0",
"cssnano": "^4.1.0",
"del": "^4.0.0",
"execa": "^1.0.0",
"find-up": "^4.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"gulp": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^5.0.0",
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.1",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-svg-sprite": "^1.4.0",
"postcss-import": "^12.0.0",
"pretty-hrtime": "^1.0.3",
"read-pkg-up": "^6.0.0",
"require-dir": "^1.0.0",
"semver": "^6.0.0",
"time-stamp": "^2.1.0",
"webpack": "^4.26.0",
"webpack-dev-middleware": "^3.2.0",
"webpack-hot-middleware": "^2.24.3"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-strateg": "^1.1.1",
"husky": "^2.0.0",
"lint-staged": "^8.0.0",
"prettier": "^1.14.3"
}
}