forked from DemocracyLab/CivicTechExchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.53 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
{
"name": "CivicTechExchange",
"version": "0.1.0",
"description": "A place for civic tech projects to connect with contributors",
"main": "index.js",
"repository": "https://github.com/DemocracyLab/CivicTechExchange.git",
"author": "Marlon Keating <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --mode production && npm run buildtask:sass && npm run buildtask:collectstatic",
"buildfast": "webpack --mode development && npm run buildtask:sass && npm run buildtask:collectstatic",
"postinstall": "webpack --mode development && npm run buildtask:sass && npm run buildtask:collectstatic",
"buildtask:collectstatic": "python manage.py collectstatic --noinput -i *.scss",
"buildtask:sass": "node-sass civictechprojects/static/css/styles.scss -o civictechprojects/static/css/compiled --output-style compressed",
"test": "jest"
},
"dependencies": {
"@material-ui/core": "^3.5.1",
"@material-ui/icons": "^3.0.1",
"@mdi/font": "^3.2.89",
"@mdi/react": "^1.1.0",
"bluebird": "^3.5.2",
"django-react-csrftoken": "^1.0.4",
"flow-bin": "^0.59.0",
"flux": "^3.1.3",
"form-serialize": "^0.7.2",
"immutable": "^3.8.2",
"lodash": "^4.17.15",
"mdi-material-ui": "^5.7.0",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"path": "^0.12.7",
"react": "^16.11.0",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.11.0",
"react-file-drop": "^0.2.8",
"react-google-recaptcha": "^1.1.0",
"react-helmet": "^5.2.0",
"react-image-crop": "^8.3.0",
"react-moment": "^0.7.9",
"react-select": "^2.4.2",
"repeating": "2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"aws-sdk": "^2.289.0",
"babel-loader": "^8.0.6",
"child_process": "^1.0.2",
"core-js": "^3.1.4",
"fs": "0.0.1-security",
"indent-string": "2.1.0",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"net": "^1.0.2",
"node-sass": "^4.13.0",
"react-test-renderer": "^16.8.6",
"regenerator-runtime": "^0.13.2",
"sync-exec": "~0.6.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.0"
},
"resolutions": {
"fstream": "^1.0.12",
"sshpk": "^1.16.1",
"mixin-deep": "^1.3.2",
"set-value": "^2.0.1",
"js-yaml": "^3.13.1"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}