-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.19 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.19 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-typescript-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tcm": "tcm ./src -c -o ./typings",
"prestart:dev": "npm run tcm",
"start:dev": "webpack-serve --host 0.0.0.0",
"prebuild": "npm run tcm",
"build": "NODE_ENV=production webpack",
"prebuild:dev": "npm run tcm",
"build:dev": "webpack --watch --progress",
"lint": "tslint src/**/*.ts src/**/*.tsx --format stylish",
"fmt": "prettier --config .prettierrc --write src/** && tslint src/**/*.ts src/**/*.tsx --fix",
"test": "jest",
"test:watch": "jest --watchAll",
"pretest:feature": "npm run build",
"test:feature": "jest --config=jest.config.feature.js",
"storybook": "start-storybook -h 0.0.0.0 -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [],
"author": "Kento75 < kento2github@gmail.com >",
"license": "MIT",
"dependencies": {
"express": "^4.16.3",
"history": "^4.6.3",
"normalize.css": "^8.0.0",
"query-string": "^6.2.0",
"react": "^16.4.1",
"react-css-modules": "^4.7.4",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.1.2",
"recompose": "^0.30.0",
"redux": "^4.0.0",
"typescript-fsa": "^3.0.0-beta-2",
"typescript-fsa-reducers": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@storybook/addon-actions": "^4.0.0-alpha.24",
"@storybook/addon-links": "^4.0.0-alpha.24",
"@storybook/addons": "^4.0.0-alpha.24",
"@storybook/react": "^4.0.0-alpha.24",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/history": "^4.7.1",
"@types/jest": "^23.1.4",
"@types/puppeteer": "^1.5.0",
"@types/query-string": "^6.1.1",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^6.0.9",
"@types/react-router": "^4.0.32",
"@types/react-router-dom": "^4.3.1",
"@types/react-test-renderer": "^16.0.1",
"@types/recompose": "^0.27.0",
"@types/redux": "^3.6.0",
"@types/storybook__addon-actions": "^3.0.3",
"@types/storybook__react": "^3.0.8",
"autoprefixer": "^8.6.5",
"awesome-typescript-loader": "^5.2.0",
"babel-loader": "^8.0.4",
"core-js": "^2.5.7",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.3.0",
"jest-css-modules-transform": "^2.0.0",
"jest-puppeteer": "^3.2.1",
"node-sass": "^4.9.2",
"postcss-loader": "^2.1.5",
"prettier": "^1.13.7",
"puppeteer": "^1.5.0",
"react-test-renderer": "^16.4.1",
"sass-loader": "^7.0.3",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-config-prettier": "^1.13.0",
"typed-css-modules": "^0.3.4",
"typed-css-modules-loader": "0.0.13",
"typescript": "^2.9.2",
"url-loader": "^1.0.1",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-serve": "^2.0.1"
}
}