-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "react-rally",
"version": "6.0.0",
"description": "React Rally 2020 Conference Website",
"main": "index.js",
"scripts": {
"test": "karma start --single-run",
"start": "webpack-dev-server --inline --content-base ./",
"build": "npm run imagemin && NODE_ENV=production webpack",
"imagemin": "./scripts/imagemin"
},
"repository": {
"type": "git",
"url": "github.com/react-rally/react-rally-2020"
},
"author": "Matt Zabriskie",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6",
"moment": "^2.24.0",
"prop-types": "15.7.2",
"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",
"karma": "^0.13.22",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}