-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.5 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
{
"name": "webpack-ts-react-kit",
"version": "1.0.0",
"description": "A Webpack, TypeScript & React starter kit",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.config.js",
"build": "npm run clean:build && NODE_ENV=production webpack --config webpack.config.js",
"lint": "npm run lint:ts",
"lint:ts": "tslint -c tslint.json --format stylish \"./src/*.ts*\"",
"test": "npm run clean:test && nyc mocha",
"test:watch": "mocha -w",
"clean:build": "rm -rf ./dist",
"clean:test": "rm -rf ./coverage"
},
"keywords": [
"webpack",
"typescript",
"react",
"reactjs",
"starter kit",
"starter project",
"boilerplate"
],
"author": "Aaron Leo Cooper <aaronleocooper@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.0.1",
"@types/enzyme": "3.1.8",
"@types/enzyme-adapter-react-16": "1.0.1",
"@types/jsdom": "11.0.4",
"@types/mocha": "2.2.41",
"@types/node": "8.0.17",
"@types/sinon": "2.3.3",
"@types/webpack-env": "1.13.5",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.0",
"cross-env": "5.1.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"html-webpack-plugin": "2.29.0",
"jsdom": "11.6.2",
"mocha": "3.4.2",
"mocha-typescript": "1.1.7",
"nyc": "11.1.0",
"react-dev-utils": "5.0.0",
"sinon": "2.4.1",
"source-map-support": "0.4.15",
"ts-loader": "2.3.1",
"ts-node": "3.3.0",
"tslint": "5.9.1",
"tslint-eslint-rules": "4.1.1",
"tslint-loader": "3.5.3",
"tslint-react": "3.4.0",
"tslint-react-recommended": "1.0.15",
"typescript": "2.6.2",
"uglifyjs-webpack-plugin": "0.4.6",
"webpack": "3.3.0",
"webpack-dev-server": "2.6.1"
},
"dependencies": {
"@types/history": "4.6.2",
"@types/react": "16.0.35",
"@types/react-dom": "16.0.3",
"@types/react-hot-loader": "3.0.5",
"@types/react-redux": "5.0.14",
"@types/react-router": "4.0.21",
"@types/react-router-redux": "5.0.11",
"@types/redux": "3.6.0",
"@types/reselect": "2.2.0",
"history": "4.7.2",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-hot-loader": "3.1.3",
"react-redux": "5.0.6",
"react-router": "4.2.0",
"react-router-redux": "5.0.0-alpha.9",
"redux": "3.7.2",
"reselect": "3.0.1",
"styled-components": "3.1.4"
}
}