-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 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
{
"name": "think-fast-first",
"version": "1.0.0",
"description": "Think Fast, First",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"now-build": "webpack -p && cp -R public/assets dist/assets",
"serve": "http-server ./dist -p 3000"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lfre/perfmatters.git"
},
"keywords": [
"perfmatters",
"performance",
"culture",
"team"
],
"author": "Alfredo Lopez",
"license": "MIT",
"bugs": {
"url": "https://github.com/lfre/perfmatters/issues"
},
"homepage": "https://github.com/lfre/perfmatters#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"chokidar": "^2.1.2",
"css-loader": "^2.1.1",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"expose-loader": "^0.7.5",
"fast-glob": "^2.2.6",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^4.0.0-beta.5",
"http-server": "^0.11.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"prettier": "^1.16.4",
"reveal.js": "github:hakimel/reveal.js#master",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}