-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "react-rally",
"version": "7.0.0",
"description": "React Rally 2023 Conference Website",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --inline --content-base ./",
"build": "npm run imagemin && NODE_ENV=production webpack",
"imagemin": "./scripts/imagemin",
"clean": "rm -rf ./assets/dist"
},
"repository": {
"type": "git",
"url": "github.com/react-rally/react-rally-2023"
},
"author": "Matt Zabriskie",
"license": "MIT",
"dependencies": {
"classnames": "2.3.2",
"moment": "2.29.4",
"prop-types": "15.8.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-router": "3.2.0"
},
"devDependencies": {
"babel-core": "6.7.2",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"css-loader": "0.23.1",
"file-loader": "0.8.5",
"imagemin": "4.0.0",
"imagemin-pngquant": "4.2.2",
"json-loader": "0.5.4",
"style-loader": "0.13.0",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
}
}