-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
67 lines (67 loc) · 2.17 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
{
"name": "pure-start",
"version": "2.0.2",
"description": "Start your project with 'Pure Start' easily then ever!",
"private": "true",
"scripts": {
"start": "cross-env NODE_ENV=development npx webpack serve --hot --mode development",
"build": "cross-env NODE_ENV=production npx webpack-cli --mode production",
"stats": "npx webpack --profile --json=stats.json",
"analyze": "npx webpack-bundle-analyzer stats.json",
"comp": "node ./create-component.js",
"prettier:check": "prettier --check \"src/**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"src/**/*.{js,ts}\"",
"eslint:check": "npx eslint . --ext .js,.ts",
"eslint:fix": "npx eslint --fix \"./**\""
},
"keywords": [
"javascript",
"webpack",
"boilerplate",
"pure",
"start"
],
"repository": "https://github.com/nmihalyov/pure-start",
"author": "Nikita Mihalyov <[email protected]>",
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"autoprefixer": "^10.3.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"css-mqpacker": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^6.0.1",
"postcss-loader": "^6.1.1",
"prettier": "^2.5.1",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.49.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-rc.0"
},
"dependencies": {
"sanitize.css": "^12.0.1"
}
}