-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 3.4 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
105
106
107
108
109
110
{
"name": "connect",
"version": "1.0.0",
"type": "module",
"description": "An open platform to save anonymous data coming from any application using this API",
"scripts": {
"start": "node src/index.js",
"dev": "cross-env NODE_ENV=development node src/index.js",
"build": "webpack --node-env production",
"build.dev": "webpack --node-env development",
"eslint.check": "eslint --ext js,jsx .",
"eslint.fix": "eslint --ext js,jsx --fix .",
"prettier.check": "prettier --list-different .",
"prettier.fix": "prettier --write .",
"test": "cross-env MONGO_MEMORY_SERVER_FILE=jest-mongodb-config.cjs yarn node --experimental-vm-modules $(yarn bin jest) --config spec/jest.config.js -i --forceExit --detectOpenHandles",
"performance": "node bin/performance.js"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": true,
"printWidth": 80
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.*": "prettier --ignore-unknown --write"
},
"author": "Matters",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.13.7",
"@mui/material": "^5.13.7",
"@mui/styles": "^5.13.7",
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"copy-webpack-plugin": "^11.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-body-parser-error-handler": "^1.0.7",
"glob-promise": "^6.0.3",
"jsonschema": "^1.2.6",
"lodash.flow": "^3.5.0",
"moment": "^2.24.0",
"mongoose": "^7.0.3",
"nodemailer": "^6.9.1",
"oauth2-server": "git+https://github.com/oauthjs/node-oauth2-server#4.x",
"parse": "^4.0.1",
"parse-dashboard": "^5.0.0",
"parse-server": "^6.0.0",
"parse-server-api-mail-adapter": "^2.2.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moment": "^1.1.3",
"react-router-dom": "6.14.1",
"swagger-ui-express": "^4.6.2",
"uuid": "^9.0.0",
"validate.js": "^0.13.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.0.0",
"@shelf/jest-mongodb": "^4.1.7",
"babel-loader": "^9.1.2",
"connect-history-api-fallback": "^2.0.0",
"core-js": "^3.30.0",
"css-loader": "^6.7.3",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-naat": "git+https://github.com/neuroanatomy/eslint-config-naat",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4",
"html-webpack-plugin": "^5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"json2csv": "^6.0.0-alpha.2",
"lint-staged": "^14",
"mini-css-extract-plugin": "^2.7.5",
"mongodb": "^5.1.0",
"nock": "^13.3.0",
"prettier": "^2.8.7",
"qs": "^6.11.1",
"sass": "^1.60.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.77.0",
"webpack-cli": "4",
"webpack-dev-middleware": "^6.0.2"
}
}