-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
90 lines (90 loc) · 2.8 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
{
"name": "flow-runtime-docs",
"homepage": "https://codemix.github.io/flow-runtime",
"repository": "https://github.com/codemix/flow-runtime.git",
"description": "A demo app for flow-runtime.",
"version": "0.20.0",
"license": "MIT",
"browserslist": ">1%, last 4 versions, Firefox ESR, not ie < 9",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.2.0",
"@fortawesome/fontawesome-free": "^5.13.1",
"autoprefixer": "6.5.1",
"babel-loader": "^8.1.0",
"babel-standalone": "6.19.0",
"babylon": "^6.14.1",
"bootstrap": "4.0.0-alpha.5",
"chalk": "1.1.3",
"codemirror": "^5.55.0",
"connect-history-api-fallback": "1.3.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"cross-spawn": "4.0.2",
"css-loader": "^3.6.0",
"detect-port": "1.0.1",
"dotenv": "2.0.0",
"empty": "^0.10.1",
"eslint": "3.8.1",
"eslint-config-react-app": "^0.5.0",
"eslint-loader": "1.6.0",
"eslint-plugin-flowtype": "2.21.0",
"eslint-plugin-import": "2.0.1",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"file-loader": "^6.0.0",
"filesize": "3.3.0",
"flow-config-parser": "^0.20.0",
"flow-runtime": "^0.20.0",
"flow-runtime-cli": "^0.20.0",
"flow-runtime-mobx": "^0.20.0",
"flow-runtime-validators": "^0.20.0",
"fs-extra": "0.30.0",
"gh-pages": "^0.12.0",
"gzip-size": "3.0.0",
"html-webpack-plugin": "^4.3.0",
"http-proxy-middleware": "0.17.2",
"mini-css-extract-plugin": "^0.9.0",
"mobx": "3",
"mobx-react": "4.1.0",
"node-sass": "^4.1.1",
"object-assign": "4.1.0",
"path-exists": "2.1.0",
"postcss-loader": "^3.0.0",
"promise": "7.1.1",
"react": "^15.4.1",
"react-codemirror2": "^7.2.1",
"react-dev-utils": "^11.0.4",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"recast": "^0.11.18",
"recursive-readdir": "2.1.0",
"regenerator-runtime": "^0.13.5",
"scss-loader": "^0.0.1",
"source-map-loader": "^0.1.6",
"strip-ansi": "3.0.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0",
"whatwg-fetch": "1.0.0",
"worker-loader": "^2.0.0"
},
"scripts": {
"lint": "eslint ./src && flow check",
"eslint:fix": "eslint ./src --fix",
"start": "cross-env NODE_ENV=development webpack-dev-server --port=3000",
"build": "cross-env NODE_ENV=production webpack",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
}
}