-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 3.21 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
92
93
94
95
96
97
98
99
100
{
"name": "crossing-tracker",
"version": "1.0.0",
"engines": {
"npm": "4.2.0",
"node": "v7.8.0"
},
"description": "[![Stories in Ready](https://badge.waffle.io/gazaskygeeks/crossing-tracker.png?label=ready&title=Ready)](https://waffle.io/gazaskygeeks/crossing-tracker) # crossing-tracker GSG Project",
"main": "index.js",
"scripts": {
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"test": "export NODE_ENV=test && npm run db:drop && npm run db:create && node tests/runner.js | tap-spec ",
"start": "node index.js",
"server:watch": "nodemon -x 'npm start' ",
"watch": "webpack -w",
"heroku-postbuild": "webpack -p --config webpack.config.js --progress",
"build": "webpack",
"jest:watch": "jest --watch",
"cover": "export NODE_ENV=test && npm run db:drop && npm run db:create && istanbul cover ./tests/runner.js",
"db:create": "psql -c 'CREATE DATABASE tests;' -U postgres -h localhost",
"db:drop": "psql -c 'DROP DATABASE IF EXISTS tests;' -U postgres -h localhost",
"test:watch": "nodemon -x 'npm test' ",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gazaskygeeks/crossing-tracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gazaskygeeks/crossing-tracker/issues"
},
"homepage": "https://github.com/gazaskygeeks/crossing-tracker#readme",
"dependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt": "^1.0.2",
"boom": "^4.3.1",
"codeclimate-test-reporter": "^0.4.1",
"css-loader": "^0.28.0",
"env2": "^2.1.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.8.5",
"googleapis": "^19.0.0",
"hapi": "^16.1.1",
"hapi-auth-cookie": "^7.0.0",
"hapi-auth-jwt2": "^7.2.4",
"inert": "^4.2.0",
"istanbul": "^0.4.5",
"jest": "^19.0.2",
"joi": "^10.5.2",
"moment": "^2.18.1",
"nodemailer": "^4.0.1",
"pg": "^6.1.5",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-big-calendar": "^0.14.0",
"react-datepicker": "^0.46.0",
"react-dom": "^15.5.4",
"react-event-calendar": "^0.3.0",
"react-loading": "^0.1.2",
"react-redux": "^5.0.4",
"react-router": "2.4.0",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"style-loader": "^0.16.1",
"url-loader": "0.5.7",
"webpack": "^2.4.1"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"shot": "^3.4.0",
"sinon": "^2.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.2"
}
}