-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"name": "bug-tracker",
"version": "1.0.0",
"description": "A bug tracking application",
"main": "server.js",
"scripts": {
"start": "node server/server",
"server": "nodemon server/server",
"client": "yarn --cwd client start",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false yarn --cwd client && yarn --cwd client build",
"test": "cross-env NODE_ENV=test jest --forceExit --detectOpenHandles --passWithNoTests && cross-env NODE_ENV=test yarn --cwd client test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottduller/bug-tracker.git"
},
"author": "Scott Duller",
"license": "MIT",
"bugs": {
"url": "https://github.com/scottduller/bug-tracker/issues"
},
"homepage": "https://github.com/scottduller/bug-tracker#readme",
"dependencies": {
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "7.20.0",
"eslint-plugin-react": "7.22.0",
"express": "^4.17.1",
"jest": "26.6.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.12",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"concurrently": "^6.2.1",
"nodemon": "^2.0.12"
}
}