UNPKG

1.56 kBJSONView Raw
1{
2 "name": "js-app-template-universal",
3 "version": "0.8.0",
4 "description": "Universal project template used by Create JS App",
5 "license": "MIT",
6 "author": "Michal Kvasničák (https://twitter.com/@michalkvasnicak)",
7 "repository": "michalkvasnicak/create-js-app",
8 "bugs": {
9 "url": "https://github.com/michalkvasnicak/create-js-app/issues"
10 },
11 "engines": {
12 "node": ">=6.0"
13 },
14 "engineStrict": true,
15 "files": [
16 ".app.js",
17 ".flowconfig",
18 "gitignore",
19 ".eslintrc",
20 "README.md",
21 "flow",
22 "public",
23 "src"
24 ],
25 "dependencies": {
26 "koa": "2.0",
27 "koa-convert": "1.2.0",
28 "koa-static-cache": "3.1.7",
29 "normalize.css": "4.2.0",
30 "react": "15.3.2",
31 "react-dom": "15.3.2",
32 "react-helmet": "3.1.0"
33 },
34 "devDependencies": {
35 "create-js-app-scripts": "^0.12.1",
36 "babel-eslint": "7.0.0",
37 "eslint": "3.6.1",
38 "eslint-config-airbnb": "12.0.0",
39 "eslint-config-js-app": "^0.2.1",
40 "eslint-loader": "1.5.0",
41 "eslint-plugin-import": "1.16.0",
42 "eslint-plugin-flowtype": "2.21.0",
43 "eslint-plugin-flowtype-errors": "1.3.0",
44 "eslint-plugin-jsx-a11y": "2.2.3",
45 "eslint-plugin-react": "6.4.1",
46 "flow-bin": "0.33.0",
47 "js-app-plugin-universal-webpack": "^0.8.0",
48 "react-test-renderer": "15.3.2"
49 },
50 "scripts": {
51 "build": "create-js-app-scripts build",
52 "lint": "node ./node_modules/.bin/eslint src",
53 "flow": "node ./node_modules/.bin/flow check",
54 "start": "create-js-app-scripts start",
55 "test": "create-js-app-scripts test"
56 }
57}