-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "randomdial",
"version": "1.0.0",
"description": "Random phone number generator",
"main": "index.js",
"scripts": {
"start": "babel-node server/index.js --exec babel-node",
"dev-start": "nodemon --exec babel-node server/index.js",
"build": "babel server --out-dir dist",
"serve": "node dist/index.js",
"test": "jest --coverage --runInBand",
"lint": "./node_modules/.bin/eslint",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCanaks/RandomDial.git"
},
"author": "Jane C. Anaekwe",
"license": "ISC",
"bugs": {
"url": "https://github.com/JCanaks/RandomDial/issues"
},
"homepage": "https://github.com/JCanaks/RandomDial#readme",
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"morgan": "^1.9.1"
}
}