-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.15 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.15 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": "tsoptimum",
"version": "1.0.0",
"description": "An application to streamline projects/assignments for Treasury Sales Managers, Officers, and Analysts within Financial Institutions.",
"engines": {
"node": "9.x"
},
"main": "index.js",
"scripts": {
"build-client": "webpack",
"build-client-watch": "webpack -w",
"deploy": "script/deploy",
"lint": "eslint ./ --ignore-path .gitignore",
"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 public",
"test": "NODE_ENV='test' mocha ./server/**/*.spec.js ./server/**/**/*.spec.js ./client/**/*.spec.js --compilers js:babel-register"
},
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^3.9.4",
"@material-ui/icons": "^3.0.2",
"@material-ui/pickers": "^3.2.10",
"apexcharts": "^3.8.3",
"async": "^2.6.2",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"clsx": "^1.0.4",
"compression": "^1.7.4",
"connect-session-sequelize": "^4.1.0",
"express": "^4.17.0",
"express-flash": "0.0.2",
"express-session": "^1.16.1",
"firebase": "^7.10.0",
"history": "^4.9.0",
"jest": "^24.9.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"node-modules": "^1.0.1",
"nodemailer": "^4.7.0",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"prop-types": "^15.7.2",
"radium": "^0.21.2",
"react": "^16.8.6",
"react-animations": "^1.0.0",
"react-apexcharts": "^1.3.3",
"react-chartjs-2": "^2.7.6",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"react-dom": "^16.8.6",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-select": "^2.4.3",
"redux": "^3.6.0",
"redux-logger": "^2.8.1",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^0.87.3",
"sequelize": "^4.44.0",
"sequelize-cli": "^5.5.0",
"socket.io": "^2.2.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.16.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"eslint": "^4.19.1",
"eslint-config-fullstack": "^3.0.0",
"eslint-plugin-react": "^7.13.0",
"eslint-traverser": "^1.5.2",
"mocha": "^5.2.0",
"nodemon": "^1.19.0",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"supertest": "^3.4.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}