-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.22 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
{
"name": "parcel-sandbox",
"version": "1.0.0",
"description": "Simple Parcel Sandbox",
"main": "index.html",
"scripts": {
"develop": "webpack-dev-server --mode=development",
"build": "webpack --mode=production"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"hyperhtml": "2.34.0",
"lit-html": "^2.1.2",
"matter-js": "^0.18.0",
"navigo": "^8.11.1",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"parcel-bundler": "^1.12.5",
"postcss-modules": "^4.3.0",
"style-loader": "^3.3.1",
"webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
}
}