-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "myreads",
"version": "0.1.0",
"private": true,
"homepage": "https://ricardocanelas.github.io/reactnd-project-myreads",
"repository": {
"type": "git",
"url": "https://github.com/ricardocanelas/reactnd-project-myreads"
},
"author": "Ricardo Canelas",
"dependencies": {
"antd": "^3.2.2",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-debounce-input": "^3.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"react-test-renderer": "^16.2.0",
"react-transition-group": "^2.2.1"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"gh-pages": "^1.1.0",
"jest-fetch-mock": "^1.4.2",
"sinon": "^4.4.2",
"source-map-explorer": "^1.5.0"
},
"scripts": {
"start": "react-scripts start",
"cleanup": "rm -rf node_modules/gh-pages/.cache",
"deploy": "npm run build && gh-pages -d build",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"analyze": "source-map-explorer build/static/js/main.*",
"eject": "react-scripts eject"
}
}