-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "react-basic",
"version": "0.0.2",
"description": "a simple react example, using webpack and typescript",
"main": "index.js",
"scripts": {
"build": "rm -Rf dist && webpack --config ./config/webpack.prod.config.js",
"dev": "webpack-dev-server --config ./config/webpack.dev.config.js",
"dev:ssr": "node ./config/dev-ssr.js",
"test": "echo 'TODO'",
"deploy": "echo 'nothing to deploy here'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aduril/react.git'"
},
"keywords": [
"react",
"example",
"tsx",
"typescript"
],
"author": "Peter Melinat <pme@gecko.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aduril/react/issues"
},
"homepage": "https://github.com/Aduril/react#readme",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.11",
"query-string": "^6.2.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"react-router": "^4.3.1",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.3.1",
"typestyle": "^2.0.1",
"window-or-global": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/lodash": "^4.14.118",
"@types/query-string": "^6.1.1",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/react-helmet": "^5.0.7",
"@types/react-router-config": "^1.1.0",
"@types/react-router-dom": "^4.3.1",
"@types/window-or-global": "^1.0.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.4",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-webpack-plugin": "^1.2.2",
"typescript": "^3.1.6",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-isomorphic-dev-middleware": "^4.1.0"
}
}