-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.89 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.89 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "reactjs-2019q1",
"sideEffects": [
"*.css",
"*.scss"
],
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"start": "webpack-dev-server --env.NODE_ENV=development --open",
"build": "webpack -p --env.NODE_ENV=production",
"e2e": "cypress",
"e2e:open": "cypress open",
"codecov": "./node_modules/.bin/codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/var-bin/reactjs-2019q1.git"
},
"keywords": [
"react",
"reactjs",
"html5",
"css3",
"webpack",
"wtf"
],
"author": "Vitalii Rybka",
"license": "MIT",
"bugs": {
"url": "https://github.com/var-bin/reactjs-2019q1/issues"
},
"homepage": "https://github.com/var-bin/reactjs-2019q1#readme",
"dependencies": {
"bulma": "^0.7.4",
"cross-fetch": "^3.0.2",
"express": "^4.16.4",
"react": "^16.8.4",
"react-dom": "npm:@hot-loader/react-dom",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.5.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babel-plugin-react-transform": "^3.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^2.0.1",
"codecov": "^3.6.5",
"console-stamp": "^0.2.7",
"css-loader": "^2.1.1",
"cypress": "^3.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.5.0",
"jest-cli": "^24.7.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.0.0",
"prettier": "1.16.4",
"react-hot-loader": "^4.8.0",
"react-transform-hmr": "^1.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-standard": "^18.2.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "^3.6.1",
"webpack-dev-server": "^3.2.1",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1"
}
}