forked from react-static/react-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.32 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
{
"name": "react-static",
"version": "4.2.3",
"main": "lib/index.js",
"types": "src/index.d.ts",
"license": "MIT",
"bin": {
"react-static": "./bin/react-static"
},
"scripts": {
"watch": "rimraf lib && babel -w src --out-dir lib",
"build": "rimraf lib && babel src --out-dir lib",
"publishnext": "npm publish --tag next",
"prepublishOnly": "yarn build",
"postpublish": "git push --tags",
"test": "eslint src examples",
"test-webpack": "jest"
},
"repository": "nozzle/react-static",
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-react-tools": "^1.0.6",
"jest": "^21.2.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"@types/react": "^16.0.18",
"@types/react-helmet": "^5.0.3",
"@types/react-router-dom": "^4.2.0",
"autoprefixer": "^7.1.5",
"axios": "^0.16.2",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"chalk": "^2.3.0",
"circular-dependency-plugin": "^4.2.1",
"cors": "^2.8.4",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.4",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"inquirer": "^3.3.0",
"inquirer-autocomplete-prompt": "^0.11.1",
"match-sorter": "^2.0.2",
"openport": "^0.0.4",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^16",
"react-dev-utils": "^4.0.1",
"react-dom": "^16",
"react-helmet": "^5.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-router-dom": "^4.2.2",
"script-ext-html-webpack-plugin": "^1.8.7",
"style-loader": "^0.19.0",
"url-loader": "^0.6.1",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.8.2",
"webpack-node-externals": "^1.6.0"
}
}