-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.11 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
{
"name": "spa",
"version": "1.0.0",
"description": "React",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open "
},
"repository": {
"type": "git",
"url": "git+https://github.com/paxarpp/lessons.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/paxarpp/lessons/issues"
},
"homepage": "https://github.com/paxarpp/lessons#readme",
"dependencies": {
"@types/jest": "^24.0.14",
"@types/react": "^16.7.21",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.0",
"@types/redux-actions": "^2.6.1",
"@types/styled-components": "^4.1.6",
"babel-eslint": "^10.0.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.5.3",
"redux": "^3.7.2",
"redux-actions": "^2.6.4",
"redux-saga": "^1.0.1",
"regenerator-runtime": "^0.13.2",
"reselect": "^4.0.0",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^1.2.0",
"@typescript-eslint/parser": "^1.2.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"css-loader": "^0.28.11",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.4.5",
"prettier": "^1.16.0",
"react-test-renderer": "^16.7.0",
"style-loader": "^0.20.3",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}