-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.37 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
{
"name": "gifted-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack --progress --colors --config webpack.production.config.js --watch",
"server-test": "BABEL_DISABLE_CACHE=1 export NODE_ENV=test && node test/Endpoints-Test.js | tap-spec ",
"start": "nodemon server/start",
"test": "BABEL_DISABLE_CACHE=1 NODE_ENV=test mocha test/.setup.js test/**/*-Test.js && npm run server-test"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.14.0",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"bookshelf": "^0.10.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-jwt": "^3.4.0",
"immutable": "^3.8.1",
"jsonwebtoken": "^7.1.9",
"knex": "^0.11.10",
"lodash": "^4.15.0",
"moment": "^2.14.1",
"nodemailer": "^2.5.0",
"nodemailer-mailgun-transport": "^1.2.1",
"pg": "^6.1.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-plugin-webpack-loaders": "^0.7.1",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"eslint": "^3.3.0",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"faker": "^3.1.0",
"jsdom": "^9.4.2",
"knex-cleaner": "^1.1.3",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"node-sass": "^3.8.0",
"nodemon": "^1.10.0",
"postcss-loader": "^0.10.0",
"react-addons-test-utils": "^15.3.0",
"react-hot-loader": "^1.3.0",
"redux-mock-store": "^1.2.0",
"sass-loader": "^4.0.0",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"supertest": "^2.0.0",
"supertest-as-promised": "^4.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.12.2"
}
}