-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "express-react-e2e-testing-demo",
"version": "1.0.0",
"description": "An Express/React app with Jasmine and Zombie test demo\"",
"main": "app.js",
"scripts": {
"test": "npm run build && NODE_ENV=test node_modules/.bin/jasmine",
"start": "npm run build && node app.js",
"build": "node node_modules/webpack/bin/webpack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaphaelDeLaGhetto/express-react-e2e-testing-demo.git"
},
"keywords": [
"express",
"react",
"jasmine",
"zombie"
],
"author": "Daniel Bidulock",
"license": "MIT",
"bugs": {
"url": "https://github.com/RaphaelDeLaGhetto/express-react-e2e-testing-demo/issues"
},
"homepage": "https://github.com/RaphaelDeLaGhetto/express-react-e2e-testing-demo#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"express": "^4.15.5",
"jwt-simple": "^0.5.1",
"mongoose": "^4.11.13",
"mongoose-seeder": "^1.2.1",
"passport": "^0.4.0",
"passport-jwt": "^3.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack": "^3.6.0"
},
"devDependencies": {
"jasmine": "^2.8.0",
"pow-mongoose-fixtures": "^0.3.0",
"zombie": "^5.0.7"
}
}