-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.41 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.41 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
{
"name": "code-drop",
"version": "0.2.0",
"description": "Website used to create and share short snippets of code.",
"main": "./server/index.js",
"author": "Yavor Konstantinov <ykonstantinov1@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"aws-sdk": "^2.859.0",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-session-sequelize": "^2.3.0",
"mariadb": "^2.5.2",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sequelize": "^6.4.0",
"sharp": "^0.27.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^26.6.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"engines": {
"node": ">=12.6.0"
},
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"start-client-dev": "NODE_ENV=dev cd frontend && yarn start",
"start-server-dev": "NODE_ENV=dev nodemon server/index.js",
"dev": "NODE_ENV=dev concurrently -k \"yarn start-server\" \"yarn start-client\"",
"test": "NODE_ENV=test jest",
"setup-env": "bash -e ./heroku-env-setup.sh",
"heroku-prebuild": "yarn run setup-env && cd frontend && yarn && yarn run build",
"lint:run": "eslint server/Controllers server/Routes server/expressSetup.js server/passportConfig.js",
"lint:fix-dry": "eslint --fix-dry-run server/Controllers server/Routes server/expressSetup.js server/passportConfig.js",
"lint:fix": "eslint --fix server/Controllers server/Routes server/expressSetup.js server/passportConfig.js"
},
"nodemonConfig": {
"ignore": [
"frontend/*",
"node_modules/*"
],
"delay": "1000"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"/node_modules/",
"/frontend/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/frontend/"
]
}
}