-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "react-router-animation",
"version": "1.0.10",
"description": "Simple HOC for creating sliding transitions between react-router components",
"main": "build/index.js",
"scripts": {
"build:dev": "NODE_ENV=development webpack",
"build:production": "NODE_ENV=production webpack -p",
"prepublish": "npm run build:production"
},
"files": [
"*.css"
],
"repository": {
"type": "git",
"url": "https://github.com/claytoncrockett/react-router-animation"
},
"author": "Clayton Crockett",
"license": "ISC",
"peerDependencies": {
"react": "^16.6.3"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.4",
"babel-plugin-react-css-modules": "^5.0.0",
"css-loader": "^2.0.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.6.3",
"react-router-dom": "^4.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.27.1"
}
}