-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
{
"name": "news_page",
"version": "1.0.0",
"description": "this project created to be a news-view-page with react component",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "rm -rf ./dist && webpack --mode production",
"prepublish": "npm run build",
"test:unit": "nyc mocha --require @babel/register --require ./test/helpers.js --require ./test/dom.js --require ignore-styles './test/*.spec.js'",
"test:unit:watch": "npm run test:unit -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marzzy/react-news-view-page.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/marzzy/react-news-view-page/issues"
},
"homepage": "https://github.com/marzzy/react-news-view-page#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"css-loader": "^0.28.11",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^5.0.1",
"jsdom": "^13.1.0",
"mocha": "^5.2.0",
"node-sass": "^4.8.3",
"nyc": "^13.1.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"url-loader": "^1.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"chai": "^4.2.0",
"enzyme-adapter-react-16": "^1.7.1",
"shabnam-font": "^3.0.0",
"sinon": "^7.2.2"
}
}