-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-page-transition",
"version": "1.0.0",
"description": "Customziable page transition components for React Router",
"main": "lib/PageTransition.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=development webpack-dev-server --mode development",
"build": "NODE_ENV=production webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Phoenix1355/react-page-transition.git"
},
"keywords": [
"react",
"react-router",
"transition",
"page",
"route",
"routing"
],
"author": "Christian H. Bohlbro",
"license": "ISC",
"bugs": {
"url": "https://github.com/Phoenix1355/react-page-transition/issues"
},
"homepage": "https://github.com/Phoenix1355/react-page-transition#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"autoprefixer": "^9.4.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-react-app": "^7.0.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"extract-css-chunks-webpack-plugin": "^3.3.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"history": "^4.7.2",
"normalize.css": "^8.0.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
}
}