forked from react-static/react-static
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.98 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.98 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
{
"name": "react-static",
"version": "5.1.1",
"main": "lib/index.js",
"types": "src/index.d.ts",
"license": "MIT",
"bin": {
"react-static": "./bin/react-static"
},
"engines": {
"node": ">=6.10.0"
},
"scripts": {
"watch": "rimraf lib && babel -w src --out-dir lib",
"build": "rimraf lib && babel src --out-dir lib",
"publishnext": "yarn publish --tag next",
"prepublishOnly": "yarn build",
"postpublish": "git push --tags",
"test": "eslint src examples test && yarn run test-sample-build",
"test-sample-build": "yarn build && (cd test/minimal-website && yarn && ../../bin/react-static build)",
"test-large-build": "yarn build && (cd test/stress-test-routes && yarn && ../../bin/react-static build)"
},
"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",
"async-sema": "^1.4.1",
"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-plugin-universal-import": "^1.4.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",
"download-git-repo": "^1.0.2",
"extract-css-chunks-webpack-plugin": "^2.0.18",
"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",
"preact": "^8.2.7",
"preact-compat": "^3.17.0",
"prop-types": "^15.5.10",
"raf": "^3.4.0",
"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",
"react-universal-component": "^2.8.1",
"shorthash": "^0.0.2",
"slash": "^1.0.0",
"style-loader": "^0.19.0",
"swimmer": "^1.1.1",
"url-loader": "^0.6.1",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.8.2",
"webpack-flush-chunks": "^1.2.3",
"webpack-node-externals": "^1.6.0"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}