-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "react-ts-starter",
"version": "0.0.0",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"src/**/{*.ts,*.tsx}": [
"prettier --write",
"tslint --project tsconfig.json --fix",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"build:dev": "webpack --env.dev",
"build:prod": "webpack --env.prod",
"pages": "yarn build:prod && ./shell/copy-dist.sh",
"dev": "webpack-dev-server --config webpack.config.js --env.dev --hot --inline --host 0.0.0.0",
"format": "prettier --write \"src/**/{*.ts,*.tsx}\"",
"lint": "tslint --project tsconfig.json --fix"
},
"dependencies": {
"csstips": "^0.2.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"redux": "^3.7.2",
"redux-observable": "^0.16.0",
"rxjs": "^5.5.0",
"typestyle": "^1.4.3"
},
"devDependencies": {
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"prettier": "1.7.4",
"style-loader": "^0.18.2",
"ts-loader": "^3.5.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^2.7.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.4",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.7.1",
"webpack-plugin-hash-output": "^1.3.0",
"workbox-webpack-plugin": "^2.0.1"
}
}