-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
140 lines (140 loc) Β· 4.19 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "whitestorm-typescript-boilerplate",
"version": "0.2.5",
"description": "A TypeScript boilerplate for building web applications with WhiteStormJS",
"main": "build/server.js",
"scripts": {
"clean": "rimraf build",
"prebuild": "npm run clean",
"build": "webpack --config config/webpack/index.js",
"build:prod": "cross-env NODE_ENV=production npm run build",
"postbuild": "webpack --config config/webpack/server.js",
"prestart": "npm run build",
"start": "node build/server.js",
"start:prod": "cross-env NODE_ENV=production npm start",
"test": "jest",
"lint": "tslint \"src/**/**.ts*\""
},
"author": "Hirako2000 <[email protected]>",
"homepage": "https://github.com/WhiteStormJS/whitestorm-typescript-boilerplate.git",
"repository": {
"type": "git",
"url": "https://github.com/WhiteStormJS/whitestorm-typescript-boilerplate.git"
},
"bugs": {
"url": "https://github.com/WhiteStormJS/whitestorm-typescript-boilerplate/issues"
},
"keywords": [
"whitestorm",
"three.js",
"typescript",
"webpack",
"starter",
"kit",
"boilerplate",
"hot reload",
"react-hot-loader"
],
"license": "MIT",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleDirectories": [
"node_modules",
"app",
"app/redux"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"devDependencies": {
"@types/base16": "^1.0.1",
"@types/classnames": "^2.2.3",
"@types/history": "^4.5.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/jest": "^22.2.2",
"@types/node": "^7.0.0",
"@types/react": "^16.0.34",
"@types/react-dom": "^16.0.3",
"@types/react-helmet": "^5.0.3",
"@types/react-redux": "^5.0.14",
"@types/react-router": "^4.0.26",
"@types/react-router-redux": "^5.0.15",
"@types/redux-devtools": "^3.0.36",
"@types/redux-devtools-dock-monitor": "^1.1.29",
"@types/redux-devtools-log-monitor": "^1.0.29",
"@types/redux-mock-store": "0.0.13",
"@types/sinon": "^4.3.1",
"@types/source-map": "^0.5.0",
"@types/tapable": "^0.2.5",
"@types/three": "^0.84.16",
"@types/uglify-js": "^2.6.28",
"@types/webpack": "^2.2.2",
"awesome-typescript-loader": "^3.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"classnames": "^2.2.6",
"cross-env": "^5.1.6",
"css-loader": "^0.28.0",
"enzyme": "^3.3.0",
"extract-text-webpack-plugin": "^2.1.2",
"fetch-mock": "^6.3.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.28.0",
"isomorphic-style-loader": "^2.0.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jest": "^22.4.3",
"json-loader": "^0.5.4",
"postcss-assets": "^4.1.0",
"postcss-cssnext": "^2.9.0",
"postcss-loader": "^1.2.2",
"react-hot-loader": "^3.1.3",
"redux-mock-store": "^1.5.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.1",
"style-loader": "^0.20.3",
"stylelint": "^7.7.1",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"tslint-loader": "^3.3.0",
"tslint-react": "^3.4.0",
"typescript": "^2.9.1",
"url-loader": "^1.0.1",
"webpack": "^2.4.1",
"webpack-dev-middleware": "^1.9.0",
"webpack-dev-server": "^2.2.0",
"webpack-hot-middleware": "^2.15.0",
"webpack-manifest-plugin": "^1.1.0"
},
"dependencies": {
"chalk": "^2.3.2",
"compression": "^1.7.2",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"react": "^16.2.0",
"react-css-modules": "^4.7.1",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^4.0.0",
"redux-connect": "^7.0.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.3.0",
"serve-favicon": "^2.5.0",
"whs": "2.1.9"
}
}