-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.75 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
{
"name": "mm",
"version": "1.0.0",
"description": "Miracle Messages Volunteer Search Tool",
"engines": {
"node": "10.5.0",
"npm": "6.1.0"
},
"main": "index.js",
"scripts": {
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "scripts/deploy",
"lint": "eslint ./ --ext .jsx --ext .js --ignore-path .gitignore",
"lint-sass": "node node_modules/sass-lint/bin/sass-lint.js -c .sasslintrc.json -q -v",
"lint-fix": "npm run lint --fix",
"postinstall": "touch secrets.js",
"seed": "node script/seed.js",
"start": "node server",
"start-dev": "NODE_ENV='development' npm run build-client-watch & npm run start-server",
"start-server": "nodemon server -e html,js,scss --ignore dist --ignore client",
"test": "NODE_ENV='test' mocha \"./server/tests/index.spec.js\" --require @babel/polyfill --require @babel/register"
},
"dependencies": {
"@babel/core": "7.1.5",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.1.2",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-proposal-function-sent": "7.1.0",
"@babel/plugin-proposal-json-strings": "7.0.0",
"@babel/plugin-proposal-numeric-separator": "7.0.0",
"@babel/plugin-proposal-throw-expressions": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-syntax-import-meta": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.5",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"axios": "0.18.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"body-parser": "1.18.3",
"bulma": "0.7.2",
"chai": "4.2.0",
"compression": "1.7.3",
"connect-session-sequelize": "6.0.0",
"css-loader": "1.0.1",
"eslint": "5.8.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"express": "4.16.4",
"express-session": "1.15.6",
"file-loader": "2.0.0",
"font-awesome": "4.7.0",
"googleapis": "34.0.0",
"history": "4.7.2",
"hoek": "6.0.2",
"husky": "1.1.3",
"mocha": "5.2.0",
"morgan": "1.9.1",
"node-sass": "4.10.0",
"nodemon": "1.18.6",
"passport": "0.4.0",
"pg": "7.6.1",
"pg-hstore": "2.3.2",
"prop-types": "15.6.2",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-redux": "5.1.0",
"react-router-dom": "4.3.1",
"react-select": "2.1.1",
"redux": "4.0.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"sass-lint": "1.12.1",
"sass-loader": "7.1.0",
"sequelize": "4.41.1",
"style-loader": "0.23.1",
"supertest": "3.3.0",
"webpack": "4.25.1",
"webpack-cli": "3.1.2"
}
}