-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "flickrinreact",
"version": "0.1.0",
"description": "Flickr application using react.js and node.",
"keywords": [
"react",
"flickr",
"api",
"node",
"scss",
"css",
"html"
],
"homepage": "http://willmayger.uk/flickr",
"author": {
"name": "Will Mayger",
"email": "will.mayger@theweblancer.com",
"url": "http://willmayger.uk/"
},
"bugs": {
"url": "https://github.com/WillMayger/flickrinreact/issues",
"email": "will.mayger@theweblancer.com"
},
"license": "MIT",
"private": true,
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/WillMayger/flickrinreact"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "1.0.14",
"react-typist": "^1.1.1",
"serve": "^6.2.0"
},
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.2",
"gulp-exec": "^2.1.3",
"gulp-sass": "^3.1.0",
"gulp-useref": "^3.1.2",
"merge-stream": "^1.0.1"
},
"scripts": {
"start": "serve -s build",
"startdev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}