-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "url-shortener",
"version": "1.0.0",
"private": true,
"description": "This app shortens URLs.",
"main": "server.js",
"scripts": {
"test:server": "jest --watchAll --testPathPattern=server/tests",
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm start",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"cypress": "npm run dev \"cd client && npm run cypress\"",
"install:all": "npm i & cd client && npm i"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^6.5.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"hashids": "^2.2.10",
"mongoose": "^6.1.2",
"mongoose-sequence": "^5.3.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"supertest": "^6.1.6"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}