-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"name": "populationx",
"version": "1.0.0",
"description": "A Population Management System",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCanaks/PopulationX.git"
},
"author": "Jane C. Anaekwe",
"license": "ISC",
"bugs": {
"url": "https://github.com/JCanaks/PopulationX/issues"
},
"homepage": "https://github.com/JCanaks/PopulationX#readme",
"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",
"apollo-server-express": "^2.8.1",
"apollo-server-testing": "^2.8.1",
"babel-core": "^7.0.0-bridge.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.0.0",
"graphql-middleware": "^3.0.3",
"graphql-yoga": "^1.18.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"prisma-client-lib": "^1.34.3",
"validatorjs": "^3.15.1"
},
"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.8.0",
"nodemon": "^1.19.1"
}
}