-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.31 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
{
"name": "bemit_css_framework",
"version": "1.3.0",
"description": "A blazing fast, managable and extensible CSS framework using the BEM and ITCSS methodology. [WIP]",
"keywords": [
"CSS",
"Framework",
"BEM",
"ITCSS"
],
"author": "Matt Willett",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/M-Willett/bemit-css.git"
},
"scripts": {
"build": "webpack",
"watch": "webpack-dev-server --open && webpack --watch",
"start": "webpack serve --open",
"server": "node server.js",
"release": "standard-version",
"publish": "standard-version && git push --follow-tags",
"test": "npm run prettier:check",
"prepare": "husky install",
"prettier:check": "prettier --config .prettierrc --check \"src/**/*.{ts,js,css,html}\""
},
"lint-staged": {
"src/**/*.{ts,js,css,html}": [
"npm run prettier:check"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^6.7.2",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.1.0",
"jquery": "^3.6.1",
"lodash": "^4.17.21",
"npm": "^9.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"smoothscroll": "^0.4.0",
"webpack-dev-middleware": "^6.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-hot-middleware": "^2.25.3",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"csv-loader": "^3.0.5",
"gh-pages": "^4.0.0",
"husky": "^8.0.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.0.4",
"mini-css-extract-plugin": "^2.7.0",
"papaparse": "^5.3.2",
"prettier": "^2.8.0",
"standard-version": "^9.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"xml-loader": "^1.2.1"
}
}