-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.11 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
{
"name": "url-shortener",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/lgraubner/url-shortener.git"
},
"author": "Lars Graubner <[email protected]> (https://larsgraubner.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgraubner/url-shortener/issues"
},
"homepage": "https://github.com/lgraubner/url-shortener#readme",
"dependencies": {},
"devDependencies": {
"assets-webpack-plugin": "3.8.4",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"clean-webpack-plugin": "0.1.19",
"cross-env": "5.2.0",
"css-loader": "0.28.11",
"eslint": "5.0.1",
"eslint-loader": "2.0.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"glob-all": "3.1.0",
"husky": "0.14.3",
"lint-staged": "7.2.0",
"optimize-css-assets-webpack-plugin": "4.0.3",
"postcss": "6.0.23",
"postcss-loader": "2.1.5",
"prettier": "1.13.7",
"purgecss-webpack-plugin": "1.2.0",
"size-limit": "0.18.3",
"style-loader": "0.21.0",
"tailwindcss": "0.6.1",
"webpack": "4.15.1",
"webpack-cli": "3.0.8",
"webpack-manifest-plugin": "2.0.3"
},
"scripts": {
"size": "size-limit",
"precommit": "lint-staged",
"build": "webpack --mode=production --progress --hide-modules --env.NODE_ENV=production",
"dev": "webpack --mode=development --progress --hide-modules",
"watch": "npm run dev -- --watch"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"semi": false
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true
}
},
"babel": {
"presets": [
"env"
]
},
"size-limit": [
{
"path": "public/dist/app_*.js",
"webpack": "false",
"limit": "35 KB"
},
{
"path": "public/dist/app_*.css",
"webpack": "false",
"limit": "10 KB"
}
]
}