-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "api-node",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack --colors --progress",
"test:unit": "NODE_ENV=testing rm -rf ./tmp/mocha-webpack && mocha-webpack --webpack-config webpack.testing.js \"src/**/*.spec.js\" --timeout 10000 --require source-map-support/register",
"test": "npm run test:unit"
},
"dependencies": {
"apollo-server-express": "^1.1.6",
"bcrypt": "^1.0.3",
"express": "^4.16.1",
"express-jwt": "^5.3.0",
"graphql-tools": "^2.4.0",
"jsonwebtoken": "^8.1.0",
"lodash.merge": "^4.6.2",
"mongoose": "^4.12.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"graphql-tag": "^2.4.2",
"mocha": "^4.0.1",
"mocha-webpack": "next",
"raw-loader": "^0.5.1",
"source-map-support": "^0.5.0",
"start-server-webpack-plugin": "^2.2.0",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.6.0"
}
}