This repository has been archived by the owner on Oct 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.76 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
{
"name": "ts-react-boilerplate",
"version": "1.0.0",
"description": "target: typescript 2, webpack 2 + hot-reload, karma + jasmine",
"main": "./dist/index.bundle.js",
"scripts": {
"start": "npm run dev",
"build": "webpack -p --config webpack/prod.config.js",
"dev": "webpack-dev-server --config webpack/dev.config.js",
"hot": "webpack-dev-server --config webpack/hot.config.js",
"lint": "tslint --force '**/*.+(tsx|js)' -e '+(node_modules|dist|coverage|.git)/**'",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sotnikov-link/ts-react-boilerplate.git"
},
"keywords": [],
"author": "Valeriy Sotnikov <[email protected]> (http://sotnikov.link)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/sotnikov-link/ts-react-boilerplate/issues"
},
"homepage": "https://github.com/sotnikov-link/ts-react-boilerplate#readme",
"devDependencies": {
"@types/jasmine": "^2.5.52",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.1.3",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine": "^2.6.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs2-launcher": "^0.5.0",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"react-hot-loader": "^3.0.0-beta.7",
"source-map-loader": "^0.2.1",
"tslint": "^5.4.3",
"tslint-react": "^3.0.0",
"typescript": "^2.3.4",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"@types/react": "^15.0.27",
"@types/react-dom": "^15.5.0",
"react": "^15.5.4",
"react-dom": "^15.5.4"
}
}