-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "react-rally",
"version": "7.0.0",
"description": "React Rally 2024 Conference Website",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack serve ./",
"build": "npm run clean && NODE_ENV=production webpack",
"clean": "rm -rf ./dist",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "github.com/react-rally/react-rally-2024"
},
"author": "Matt Zabriskie",
"license": "MIT",
"dependencies": {
"classnames": "2.5.1",
"moment": "2.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.24.0"
},
"devDependencies": {
"@babel/core": "7.24.6",
"@babel/preset-env": "7.24.6",
"@babel/preset-react": "7.24.7",
"babel-loader": "9.1.3",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"html-webpack-plugin": "5.6.0",
"husky": "9.0.11",
"json-loader": "0.5.7",
"lint-staged": "15.2.7",
"prettier": "3.3.2",
"style-loader": "4.0.0",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "5.92.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}