-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "hackduke-hardware-registration",
"version": "0.0.0",
"description": "Starter project for an ES6 RESTful Express API",
"main": "dist",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src --presets es2015,stage-0\"",
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"start": "node dist",
"prestart": "npm run -s build",
"test": "eslint src"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/developit/express-es6-rest-api.git"
},
"author": "Jason Miller <jason@developit.ca>",
"license": "MIT",
"dependencies": {
"angular": "^1.5.5",
"angular-animate": "^1.5.5",
"angular-aria": "^1.5.5",
"angular-material": "git+https://github.com/angular/bower-material.git#master",
"angular-messages": "^1.5.5",
"autoprefixer": "^6.5.1",
"babel-eslint": "^7.1.0",
"body-parser": "^1.13.3",
"bootstrap": "^3.3.7",
"compression": "^1.5.2",
"cors": "^2.7.1",
"express": "^4.13.3",
"http-auth": "^3.0.1",
"mongoose": "^4.6.0",
"morgan": "^1.7.0",
"pug": "^2.0.0-beta6",
"resource-router-middleware": "^0.5.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"gulp": "^3.9.1",
"gulp-postcss": "^6.2.0",
"gulp-sourcemaps": "^2.2.0",
"nodemon": "^1.9.2"
},
"peerDependencies": {
"angular": "@>=1.3 <1.6",
"angular-animate": "^@>=1.3 <1.6",
"angular-aria": "@>=1.3 <1.6",
"angular-messages": "@>=1.3 <1.6"
},
"devDependencies": {
},
"bugs": {
"url": "https://github.com/developit/express-es6-rest-api/issues"
},
"homepage": "https://github.com/developit/express-es6-rest-api#readme",
"keywords": [
"hackduke",
"hardware"
]
}