-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.55 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.55 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
97
98
99
100
{
"name": "newamerica-cms",
"version": "1.0.0",
"engines": {
"node": "18.x"
},
"description": "Custom Content Management System (CMS) built for New America",
"main": "index.js",
"scripts": {
"start": "source .env && source venv/bin/activate && ./manage.py runserver",
"build": "NODE_ENV=development webpack",
"dev": "NODE_ENV=development webpack --watch",
"dev:minimal": "NODE_ENV=development webpack --watch --display=errors-only",
"open": "open https://localhost:8000/",
"test": "jest",
"build:lite": "NODE_ENV=production webpack --config webpack.config.lite.js",
"build:production": "NODE_ENV=production webpack",
"heroku-postbuild": "npm run build:production",
"brew": "brew install cairo && brew install pango && brew install gdk-pixbuf && brew install redis",
"apt": "sudo apt-get install redis-server libcairo2-dev libpango1.0-dev libgdk-pixbuf2.0-0",
"redis-dev": "redis-server --daemonize yes",
"celery-dev": "celery -A newamericadotorg worker --loglevel=info --broker=redis://127.0.0.1:6379/0",
"get-static": "aws s3 sync s3://newamericadotorg-static/static/ newamericadotorg/static --exclude 'wagtail*' --exclude 'rest_framework/*' --exclude 'admin/*' --exclude 'table_block/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newamericafoundation/newamerica-cms.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/newamericafoundation/newamerica-cms/issues"
},
"homepage": "https://github.com/newamericafoundation/newamerica-cms#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"bowser": "^2.0.0-alpha.4",
"date-fns": "^2.0.0-alpha.27",
"dom-to-image": "^2.6.0",
"history": "^4.7.2",
"jest-environment-jsdom": "^29.5.0",
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"query-string": "^6.11.1",
"react": "16.13.0",
"react-document-meta": "^3.0.0-beta.2",
"react-dom": "16.13.0",
"react-ga": "^2.4.1",
"react-recaptcha": "^2.3.7",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scrollbar": "^0.5.6",
"react-slick": "^0.28.1",
"react-transition-group": "^2.2.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"smooth-scroll": "^12.1.5",
"store": "^2.0.12",
"url-polyfill": "^1.0.5",
"url-search-params-polyfill": "^3.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@fortawesome/fontawesome-free": "^6.5.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"core-js": "^2.6.5",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"cssnano": "^3.10.0",
"d3": "^5.0.0",
"eslint": "^4.18.2",
"eslint-plugin-babel": "^3.2.0",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"jest-fetch-mock": "^1.6.5",
"jquery": "^3.6.4",
"mini-css-extract-plugin": "^1.6.2",
"postcss": "^7.0.39",
"react-test-renderer": "^16.4.2",
"redux-mock-store": "^1.5.3",
"sass": "^1.60.0",
"sass-loader": "^9.0.3",
"sass-resources-loader": "^1.3.3",
"terser-webpack-plugin": "^4.2.3",
"watch": "^1.0.2",
"webpack": "^5.82.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.2"
}
}