-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.92 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
{
"name": "svelte-typescript-scss-webpack-app",
"version": "1.0.0",
"devDependencies": {
"@typescript-eslint/parser": "^1.12.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-svelte3": "^2.7.2",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.17",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-safe-parser": "^4.0.1",
"prettier": "^1.18.2",
"prettier-plugin-svelte": "^0.7.0",
"sass-loader": "^7.1.0",
"string-replace-loader": "^2.2.0",
"style-loader": "^0.23.1",
"svelte": "^3.6.7",
"svelte-loader": "2.13.3",
"svelte-preprocess": "^2.14.4",
"terser-webpack-plugin": "^1.3.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.2.1"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development --open",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.+(js|ts)": [
"eslint --fix",
"prettier --write",
"git add"
],
"**/*.(svelte|css|scss|json|md|html)": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"dependencies": {
"whatwg-fetch": "^3.0.0"
}
}