-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·104 lines (104 loc) · 5.02 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
{
"name": "tolaActivity",
"version": "0.0.0",
"description": "Frontend framework for Mercy Corp’s TolaActivity web app",
"author": "Paul Souders <psouders@mercycorps.org>",
"config": {
"css": "tola/static/css",
"js": "tola/static/js"
},
"scripts": {
"cpx-bootstrap-css": "cpx \"node_modules/bootstrap/dist/css/bootstrap.min.{css,css.map}\" $npm_package_config_css",
"cpx-bootstrap-js": "cpx \"node_modules/bootstrap/dist/js/bootstrap.min.{js,js.map}\" $npm_package_config_js",
"cpx-jquery-js": "cpx node_modules/jquery/dist/jquery.min.js $npm_package_config_js",
"cpx-jquery-ui-js": "cpx node_modules/jquery-ui-dist/jquery-ui.min.js $npm_package_config_js",
"cpx-jquery-ui-css": "cpx node_modules/jquery-ui-dist/jquery-ui.min.css $npm_package_config_css",
"cpx-popper-js": "cpx \"node_modules/popper.js/dist/umd/popper.min.{js,js.map}\" $npm_package_config_js",
"cpx-bootstrap-multiselect-js": "cpx node_modules/bootstrap-multiselect/dist/js/bootstrap-multiselect.js $npm_package_config_js",
"cpx-bootstrap-multiselect-css": "cpx node_modules/bootstrap-multiselect/dist/css/bootstrap-multiselect.css $npm_package_config_css",
"cpx-select2-js": "cpx node_modules/select2/dist/js/select2.min.js $npm_package_config_js",
"cpx-select2-css": "cpx node_modules/select2/dist/css/select2.min.css $npm_package_config_css",
"cpx-leaflet-css": "cpx node_modules/leaflet/dist/leaflet.css $npm_package_config_css",
"cpx-leaflet-js": "cpx node_modules/leaflet/dist/leaflet.js $npm_package_config_js",
"cpx-pnotify-core-js": "cpx \"node_modules/pnotify/dist/iife/PNotify.{js,js.map}\" $npm_package_config_js",
"cpx-pnotify-buttons-js": "cpx \"node_modules/pnotify/dist/iife/PNotifyButtons.{js,js.map}\" $npm_package_config_js",
"cpx-pnotify-confirm-js": "cpx \"node_modules/pnotify/dist/iife/PNotifyConfirm.{js,js.map}\" $npm_package_config_js",
"copy": "npm-run-all cpx-*",
"build": "npm run build:prod; npm run build:dev",
"build:prod": "./node_modules/.bin/webpack --config webpack.prod.js --mode production",
"build:dev": "./node_modules/.bin/webpack --config webpack.dev.js --mode development",
"watch": "./node_modules/.bin/webpack-dev-server --config webpack.local.js --mode development",
"watch-vagrant": "./node_modules/.bin/webpack-dev-server --config webpack.vagrant.js --mode development",
"test": "./node_modules/.bin/jest --config jest.config.js ./js",
"test:watch": "npm test -- --watch"
},
"optionalDependencies": {
"fsevents": "^2.0.6"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-runtime": "^6.23.0",
"bootstrap": "4.3.1",
"bootstrap-multiselect": "github:davidstutz/bootstrap-multiselect",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^0.1.19",
"cpx": "*",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"file-loader": "^3.0.1",
"jest": "^23.6.0",
"jquery": "3.4.0",
"jquery-ui-dist": "1.12.1",
"leaflet": "0.7.3",
"mini-css-extract-plugin": "^0.5.0",
"mobx": "^5.9.4",
"mobx-react": "^5.3.6",
"nanobus": "^4.3.5",
"node-sass": "^4.12.0",
"nodemon": "^1.18.3",
"npm-run-all": "*",
"pnotify": "^4.0.0-alpha.4",
"popper.js": "1.12.9",
"react": "^16.6.0",
"react-bootstrap-table-next": "^2.0.0",
"react-bootstrap-table2-paginator": "^2.0.0",
"react-dom": "^16.6.0",
"react-fast-compare": "^2.0.4",
"react-multiselect-checkboxes": "^0.1.1",
"react-select": "^2.2.0",
"react-simple-popover": "^0.2.4",
"router5": "^7.0.1",
"router5-plugin-browser": "^7.0.1",
"sass-loader": "^7.1.0",
"select2": "4.0.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.23.1",
"webpack-bundle-tracker": "^0.4.2-beta",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "^0.18.0",
"react-autosize-textarea": "^7.0.0",
"react-bootstrap-table-next": "^2.0.0",
"react-multiselect-checkboxes": "^0.1.1",
"react-paginate": "^6.2.0",
"react-select": "^2.2.0",
"react-sortable-hoc": "^1.9.1",
"react-virtualized": "^9.21.0"
}
}