-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.06 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
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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "backbonejs-poc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:server": "babel-node ./server/app.js --exec --presets es2015,stage-2",
"start:server:dev": "nodemon ./server/app.js --exec babel-node --presets es2015,stage-2",
"build": "npm run pre-build && babel-node server/build",
"pre-build": "npm run lint && npm run test:build",
"remove-build": "rimraf ./coverage",
"serve:dev": "babel-node server/dev",
"serve:prod": "babel-node server/prod",
"start": "npm-run-all --parallel serve:dev lint:watch",
"test": "jest --notify",
"test:build": "jest --bail --coverage --json",
"test:travis": "npm run build",
"test:commit": "jest --bail --notify",
"test:watch": "npm run test -- --watch",
"validate": "webpack-validator webpack.config.js",
"lint": "esw -c ./eslintrc.json ./src/*.js",
"lint:watch": "npm run lint -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielisaacgeslin/backbonejs-poc.git"
},
"author": "danielisaacgeslin",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielisaacgeslin/backbonejs-poc/issues"
},
"homepage": "https://github.com/danielisaacgeslin/backbonejs-poc#readme",
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.14.0",
"babel-core": "^6.24.0",
"babel-jest": "^15.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-runtime": "^6.11.6",
"browser-sync": "^2.15.0",
"bs-fullscreen-message": "^1.1.0",
"chalk": "^1.1.3",
"chunk-manifest-webpack-plugin": "^0.1.0",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.25.0",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"eslint-watch": "^2.1.14",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.22.0",
"inline-manifest-webpack-plugin": "^3.0.1",
"jest-cli": "^15.1.1",
"node-sass": "^3.9.3",
"nodemon": "^1.11.0",
"npm-run-all": "^3.1.0",
"postcss-loader": "^0.13.0",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"strip-ansi": "^3.0.1",
"style-loader": "^0.13.1",
"stylelint": "^7.9.0",
"stylelint-webpack-plugin": "^0.7.0",
"terminal-kit": "^1.6.7",
"url-loader": "^0.5.7",
"webpack": "^1.0.0",
"webpack-dev-middleware": "^1.7.0",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.12.2",
"webpack-manifest-plugin": "^1.0.1",
"webpack-md5-hash": "0.0.5",
"webpack-validator": "^2.3.0"
},
"dependencies": {
"backbone": "^1.3.3",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"mongodb": "^2.2.26",
"restify": "^4.3.0"
}
}