-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.61 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.61 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "final-project",
"version": "1.0.0",
"description": "Final Project",
"main": "index.js",
"engines": {
"node": "12.9.1"
},
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && node ./src/server/bin/server",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "nodemon ./src/server/bin/server",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"db:setup": "cd ./src/server/ && knex migrate:latest && knex seed:run",
"db:clean": "cd ./src/server/ && knex migrate:rollback",
"storybook": "cd ./src/client/ && start-storybook -p 3007",
"test": "jest",
"test:watch": "jest --watch",
"code:check": "npm run code:lint && npm run code:format -- --check",
"code:clean": "npm run code:lint -- --fix && npm run code:format -- --write",
"code:lint": "eslint --ext .js,.jsx,.ts,.tsx \"src/\"",
"code:format": "prettier \"./src/**/**.{js,jsx,ts,tsx}\"",
"code:check:rules": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"author": "Shanawaz Islam",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/react": "^5.3.17",
"@storybook/theming": "^5.3.17",
"app-root-path": "^3.0.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"circular-json": "^0.5.9",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-fetch": "^3.0.4",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"final-form": "^4.18.7",
"firebase": "^7.12.0",
"firebase-admin": "^8.10.0",
"formik": "^2.1.4",
"interactjs": "^1.9.7",
"jest-css-modules-transform": "^4.0.0",
"jest-styled-components": "^7.0.0",
"knex": "^0.20.13",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"node-sass": "^4.13.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-light-accordion": "^0.1.4",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"react-social-login-buttons": "^3.0.0",
"react-with-firebase-auth": "^1.3.2",
"reactjs-popup": "^1.5.0",
"recharts": "^1.8.5",
"sass-loader": "^8.0.2",
"serve-favicon": "^2.5.0",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"winston": "^3.2.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"concurrently": "^5.1.0",
"express-form-data": "^2.0.12",
"husky": "2.4.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"mock-knex": "^0.4.7",
"nodemon": "^2.0.2",
"poetic": "1.2.6",
"sequelize-cli": "^5.5.1",
"storybook-react-router": "^1.0.8",
"webpack-dev-server": "3.10.3"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "npm run code:check"
}
}
}