-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 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
58
{
"name": "nodejs-sample",
"version": "0.0.1",
"description": "Starter Node.js sample project",
"main": "dst",
"directories": {
"test": "test/"
},
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src\"",
"build": "babel src -s -D -d dst",
"start": "node dst",
"prestart": "npm run -s build",
"test": "mocha --exit --compilers js:babel-register",
"_test": "NODE_ENV=test mocha --exit --compilers js:babel-core/register --recursive $(find test -name '*.spec.js')",
"debug": "npm run -s build && node --nolazy --inspect-brk=9229 dst"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellflat/nodejs-sample.git"
},
"author": "wellflat",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.814.0",
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"cors": "^2.7.1",
"express": "^4.13.3",
"express-session": "^1.15.6",
"express-validator": "^4.2.1",
"knex": "^0.19.5",
"morgan": "^1.9.1",
"multer": "^1.3.1",
"multer-s3": "^2.7.0",
"mysql2": "^1.5.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.18.2",
"mocha": "^10.2.0",
"nodemon": "^1.9.2",
"power-assert": "^1.4.4",
"source-map-support": "^0.5.0"
},
"bugs": {
"url": "https://github.com/wellflat/nodejs-sample"
},
"keywords": [
"node"
]
}