-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "react-typescript-boilerplate",
"version": "1.0.0",
"description": "Boilerplate project that uses Typescript, React, and Webpack",
"main": "index.js",
"scripts": {
"build:webpack": "NODE_ENV=production webpack --config config/webpack.prod.js",
"build": "npm run clean && npm run build:webpack",
"clean": "rimraf build",
"start": "node dev_server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "George Lee",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/keokilee/react-typescript-boilerplate.git"
},
"bugs": {
"url": "https://github.com/keokilee/react-typescript-boilerplate/issues"
},
"homepage": "https://github.com/keokilee/react-typescript-boilerplate",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"express": "^4.13.4",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.2",
"redbox-react": "^1.2.2",
"rimraf": "^2.5.2",
"tslint": "^3.3.0",
"tslint-loader": "^2.1.0",
"webpack": "^1.12.15",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.6.4"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.1.2",
"redux": "^3.1.5",
"ts-loader": "^0.8.1",
"typescript": "^1.7.5"
}
}