This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.87 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
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
{
"name": "simple-project",
"version": "1.0.0",
"description": "simple project from React, Redux, and TypeScript",
"main": "test-setup.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.config.js --progress --profile --colors",
"start": "cross-env NODE_ENV=development node server",
"start:prod": "cross-env NODE_ENV=production node server",
"test": "-"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yasich217/simple-project.git"
},
"keywords": [
"React",
"Redux",
"TypeScript"
],
"author": "Yaroslav Kazarin",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yasich217/simple-project/issues"
},
"homepage": "https://github.com/Yasich217/simple-project#readme",
"dependencies": {
"axios": "0.16.2",
"classnames": "2.2.5",
"concurrently": "3.4.0",
"express": "4.15.2",
"extract-text-webpack-plugin": "2.1.0",
"i18next": "8.4.3",
"lodash": "4.17.4",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-redux": "5.0.3",
"react-redux-form": "1.13.0",
"react-router": "4.1.2",
"react-router-dom": "4.1.2",
"redux": "3.6.0",
"redux-actions": "2.0.1",
"redux-devtools-extension": "2.13.2",
"redux-thunk": "2.2.0",
"requirejs": "2.3.3",
"serve-static": "1.12.1",
"todomvc-app-css": "2.0.6",
"yargs": "7.0.1"
},
"devDependencies": {
"@types/assertion-error": "1.0.30",
"@types/chai": "3.4.35",
"@types/classnames": "0.0.32",
"@types/lodash": "4.14.54",
"@types/mocha": "2.2.39",
"@types/node": "8.0.14",
"@types/react": "15.0.15",
"@types/react-dom": "0.14.23",
"@types/react-redux": "4.4.37",
"@types/redux": "3.6.0",
"@types/redux-actions": "1.2.3",
"awesome-typescript-loader": "3.1.2",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.4.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-latest": "6.24.0",
"babel-preset-react": "6.23.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "6.22.0",
"babel-runtime": "6.23.0",
"chai": "3.5.0",
"chalk": "1.1.3",
"cross-env": "3.2.3",
"css-loader": "0.26.4",
"eslint": "3.17.1",
"eslint-plugin-react": "6.10.0",
"file-loader": "0.10.1",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"jsdom": "9.11.0",
"json-loader": "0.5.4",
"mocha": "3.2.0",
"redux-devtools": "3.3.2",
"socket.io": "1.7.3",
"stats-webpack-plugin": "0.5.0",
"style-loader": "0.13.2",
"ts-loader": "2.0.1",
"typescript": "2.2.1",
"typescript-require": "0.2.9-1",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1",
"webpack-hot-middleware": "2.17.1"
}
}