-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 3.16 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "errnd",
"version": "1.0.0",
"description": "A platform where your errands are completed by your communities",
"main": "index.js",
"scripts": {
"pretest": "npm run lint && npm run db:undo:migrate:test && npm run db:migrate:test && npm run db:seed:test",
"test": "cross-env NODE_ENV=test nyc mocha ./test/index --require babel-register --exit --timeout 250000",
"posttest": "npm run db:undo:migrate:test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start:dev": "npm run db:migrate && cross-env NODE_ENV=development nodemon index.js --exec babel-node --",
"db:undo:migrate": "node_modules/.bin/sequelize db:migrate:undo:all",
"db:undo:migrate:test": "cross-env NODE_ENV=test node_modules/.bin/sequelize db:migrate:undo:all",
"db:migrate": "node_modules/.bin/sequelize db:migrate",
"db:migrate:test": "cross-env NODE_ENV=test node_modules/.bin/sequelize db:migrate",
"db:seed:undo": "node_modules/.bin/sequelize db:seed:undo:all",
"db:seed": "node_modules/.bin/sequelize db:seed:all",
"db:seed:test": "cross-env NODE_ENV=test node_modules/.bin/sequelize db:seed:all",
"lint": "./node_modules/.bin/eslint ./ --fix --ignore-path .gitignore",
"start": "cross-env NODE_ENV=production npm run build && npm run db:migrate && node dist/index.js",
"build": "npm run clean && babel ./ --ignore node_modules,test,coverage,dist -d dist/",
"clean": "rimraf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/net-square-designs/Errnd.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/net-square-designs/Errnd/issues"
},
"homepage": "https://github.com/net-square-designs/Errnd#readme",
"nyc": {
"exclude": [
"build",
"models"
]
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"bcrypt": "^3.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"cors": "^2.8.5",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"email-validator": "^2.0.4",
"express": "^4.16.4",
"express-validator": "^5.3.0",
"jsonwebtoken": "^8.4.0",
"jwt-decode": "^2.2.0",
"logger": "0.0.1",
"morgan": "^1.9.1",
"nodemon": "^1.18.9",
"npm": "^6.4.1",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"rimraf": "^2.6.2",
"sequelize": "^5.3.0",
"sequelize-cli": "^5.5.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"node-mocks-http": "^1.7.3",
"nodemon": "^1.18.9",
"nyc": "^13.1.0"
}
}