-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
{
"name": "webpack_svelte",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack",
"build": "NODE_ENV=production webpack --mode=production --progress",
"dev": "webpack-dev-server --watch",
"analyze": "NODE_ENV=production webpack --env.analyze=true --mode=production --progress",
"lint": "npx eslint src --ext .svelte",
"lintfix": "npx eslint src --ext .svelte --fix",
"size": "npm run build && size-limit"
},
"keywords": [],
"author": "Илья Бельский <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-svelte3": "^1.2.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"postcss-loader": "^3.0.0",
"preload-webpack-plugin": "^3.0.0-beta.3",
"prettier": "1.17.1",
"size-limit": "^1.3.2",
"style-loader": "^0.23.1",
"svelte": "^3.4.1",
"svelte-loader": "^2.13.4",
"url-loader": "^1.1.2",
"webpack": "^4.31.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"dependencies": {
"core-js": "^3.1.0",
"page": "^1.11.4"
},
"size-limit": [
{
"limit": "300 KB",
"webpack": true,
"path": "./build/*.js"
}
]
}