forked from foladipo/news-flash-cp1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.97 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
66
67
{
"name": "news-flash-cp1",
"version": "0.0.1",
"description": "A web app that retrieves news headlines and displays them in a list.",
"main": "app.js",
"scripts": {
"build": "./node_modules/.bin/webpack",
"build:watch": "./node_modules/.bin/webpack --watch",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"start": "node app.js",
"test": "./node_modules/.bin/mocha --require babel-register tests/.setup.js tests/*[sS]pec.js",
"test:nyc": "./node_modules/.bin/nyc --reporter=html --reporter=text ./node_modules/.bin/mocha --require babel-register tests/.setup.js tests/*[sS]pec.js"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"news",
"react"
],
"author": "Folusho Oladipo",
"license": "ISC",
"dependencies": {
"axios": "^0.16.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.6",
"express": "^4.15.2",
"firebase": "^3.8.0",
"firebase-admin": "^4.2.1",
"flux": "^3.1.2",
"path": "^0.12.7",
"react": "^15.5.3",
"react-dom": "^15.5.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"cheerio": "^0.22.0",
"coveralls": "^2.13.0",
"css-loader": "^0.28.0",
"dotenv": "^4.0.0",
"enzyme": "^2.8.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"morgan": "^1.8.1",
"node-sass": "^4.5.2",
"nyc": "^10.2.0",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.3.3"
}
}