-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.81 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
97
98
{
"name": "ts-react-redux-startup",
"version": "1.4.0",
"description": "TypeScript redux configuration project",
"scripts": {
"start": "ts-node index.ts",
"build": "npm run clean && npm run build:vendor && npm run build:app",
"build:app": "webpack --config webpack.config.js",
"build:vendor": "webpack --config webpack.config.vendor.js",
"clean": "rimraf dist",
"test": "npm run lint && mocha dist/spec",
"lint": "npm run lint:sass && npm run lint:ts",
"lint:ts": "tslint src/**/*.ts{,x}",
"lint:sass": "sass-lint -v"
},
"repository": {
"type": "git",
"url": "https://github.com/brunolm/ts-react-redux-startup"
},
"keywords": [
"typescript",
"react",
"redux"
],
"author": {
"name": "Bruno Leonardo Michels",
"email": "[email protected]",
"url": "http://blog.codingwise.com/"
},
"license": "MIT",
"dependencies": {
"bootstrap": "^4.0.0-alpha.6",
"classnames": "^2.2.5",
"clone": "^2.1.1",
"compression": "^1.6.2",
"express": "^4.15.2",
"font-awesome": "^4.7.0",
"history": "^4.6.1",
"jquery": "^3.2.1",
"mirror-keys": "^1.0.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"serve-favicon": "^2.4.1",
"tether": "^1.4.0",
"ts-node": "^3.0.2",
"vash": "^0.12.2"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/clone": "^0.1.30",
"@types/express": "^4.0.35",
"@types/history": "^4.5.0",
"@types/jquery": "^2.0.41",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.11",
"@types/react": "^15.0.20",
"@types/react-dom": "^0.14.23",
"@types/react-redux": "^4.4.38",
"@types/react-router-dom": "^4.0.1",
"@types/react-router-redux": "^4.0.43",
"@types/redux-thunk": "^2.1.0",
"@types/webpack": "^2.2.11",
"autoprefixer": "^6.7.7",
"awesome-typescript-loader": "^3.1.2",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"css-loader": "^0.27.3",
"extendify": "^1.0.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"mocha": "^3.2.0",
"node-sass": "^4.5.1",
"nodemon": "^1.11.0",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"rimraf": "^2.6.1",
"sass-lint": "^1.10.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.14.1",
"tslint": "^4.5.1",
"typescript": "^2.2.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
}
}