-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 KB
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
{
"name": "node-endpoint",
"version": "1.0.0",
"description": "RESTful API",
"main": "src/server.ts",
"scripts": {
"build": "webpack",
"dev": "ts-babel-node src/server.ts",
"start": "node src/server.ts",
"test": "mocha --compilers js:ts-babel-node/register test/test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/MohamadAtieh/node-endpoint.git"
},
"author": "Mohamad Atie",
"license": "MIT",
"bugs": {
"url": "https://github.com/MohamadAtieh/node-endpoint/issues"
},
"homepage": "https://github.com/MohamadAtieh/node-endpoint",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.12.0",
"express": "4.12.1",
"express-session": "1.10.3",
"mongoose": "4.10.5",
"oauth2orize": "1.0.1",
"passport": "0.2.1",
"passport-http": "0.2.2",
"passport-http-bearer": "1.0.1",
"passport-oauth2-client-password": "0.1.2",
"validator": "3.33.0"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/express": "4.0.35",
"@types/mocha": "2.2.41",
"@types/node": "~6.0.60",
"@types/supertest": "^2.0.0",
"awesome-typescript-loader": "3.1.2",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "6.18.0",
"chai": "2.1.2",
"del": "1.1.1",
"extract-text-webpack-plugin": "2.1.0",
"mocha": "3.4.2",
"nodemon": "1.11.0",
"source-map-loader": "0.2.0",
"supertest": "0.15.0",
"ts-babel": "^3.0.1",
"ts-babel-node": "1.1.1",
"ts-node": "3.0.6",
"typescript": "2.3.4",
"webpack": "2.2.1"
}
}