This repository has been archived by the owner on Aug 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
113 lines (113 loc) · 3.08 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "reango",
"version": "1.0.0",
"description": "reango",
"scripts": {
"start": "yarn run clean && webpack-dev-server",
"build": "yarn run clean && NODE_ENV=production webpack",
"lint": "eslint client && prospector src--uses django --ignore-patterns */migrations",
"lint-fix": "eslint --fix client && autopep8 --in-place --aggressive --aggressive --recursive --max-line-length 79 server",
"clean": "rm -rf ./static/bundles/* ./static/index.html",
"postinstall": "python3 ./manage.py graphql_schema && npm run build",
"relay": "relay-compiler --watch --src ./client --schema ./lib/schema.json",
"flow-server": "flow server",
"flow": "flow status"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ncrmro/reango.git"
},
"engines": {
"node": ">=8.7.0",
"npm": "5.0.3"
},
"author": "Nicholas Romero",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-flow": "^6.23.0",
"empty": "^0.10.1",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.8.0",
"flow-bin": "^0.57.3",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.3",
"webpack-dev-server": "^2.9.3"
},
"dependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-relay": "^1.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"connect-history-api-fallback": "^1.3.0",
"cross-env": "^3.1.3",
"css-loader": "^0.28.7",
"dotenv": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^0.9.0",
"lodash": "^4.17.2",
"material-components-web": "0.22.0",
"node-sass": "^4.5.3",
"normalize.css": "^5.0.0",
"postcss-loader": "^2.0.8",
"precss": "^2.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "3.0.0-beta.6",
"react-mdc-web": "^0.15.0",
"react-relay": "^1.4.1",
"react-relay-network-layer": "^2.0.1",
"react-router-dom": "^4.2.2",
"recharts": "^1.0.0-alpha.6",
"relay-compiler": "^1.4.1",
"relay-runtime": "^1.4.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-bundle-tracker": "^0.2.0"
},
"metadata": {
"graphql": {
"schema": "./build/schema.json"
}
},
"babel": {
"presets": [
"react",
[
"env",
{
"targets": {
"browsers": [
"last 1 versions"
],
"node": "current"
}
}
],
"stage-0"
],
"plugins": [
"relay"
],
"env": {
"development": {
"plugins": [
"react-hot-loader/babel"
]
}
}
}
}