-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
76 lines (76 loc) · 2.43 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
{
"name": "basic-spa",
"description": "Stable version of a basic SPA using JavaScript.",
"license": "MIT",
"version": "3.0.1",
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve --hot --open --mode development",
"test": "jest",
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:editor",
"lint:scripts": "eslint --fix \"./app/**/*.js\"",
"lint:styles": "stylelint \"./app/**/*.(css)\" --fix",
"lint:editor": "eclint fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"bootstrap": "^4.6.0",
"jquery": "3.5.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.5",
"@babel/register": "^7.16.5",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.0",
"core-js": "^3.20.1",
"css-loader": "^6.5.1",
"eclint": "^2.8.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.7",
"postcss": "^8.2.13",
"postcss-at-rules-variables": "^0.1.10",
"postcss-calc": "^7.0.5",
"postcss-discard-comments": "^4.0.2",
"postcss-each": "^0.10.0",
"postcss-fontpath": "^1.0.0",
"postcss-functions": "^3.0.0",
"postcss-hexrgba": "^2.0.1",
"postcss-import": "^12.0.0",
"postcss-loader": "^7.2.4",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.3",
"postcss-replace": "CKGrafico/postcss-replace#patch-1",
"postcss-simple-vars": "^5.0.2",
"prettier": "^2.2.1",
"prettier-stylelint": "^0.4.2",
"purgecss-webpack-plugin": "^4.0.0",
"require.all": "^2.0.5",
"start-server-and-test": "^1.12.0",
"style-loader": "^2.0.0",
"stylelint": "^15.6.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.11.1"
},
"repository": "https://github.com/CKGrafico/Frontend-Boilerplates#frontend-boilerplates",
"author": "https://github.com/CKGrafico/Frontend-Boilerplates#-contributors"
}