-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.25 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
94
{
"name": "test-list-app",
"version": "0.0.1",
"description": "test list",
"scripts": {
"analyze": "webpack --json | webpack-bundle-size-analyzer",
"build-client": "npm run lint && npm run test-report-html && cross-env WEBPACK_CONFIG_MODE=CLIENT_BUILD webpack",
"build-client-no-tests": "cross-env WEBPACK_CONFIG_MODE=CLIENT_BUILD webpack",
"serve-client": "webpack-dashboard -- webpack-dev-server",
"serve-backend": "nodemon --watch server server/server.js",
"start-backend": "node server/server.js",
"lint": "(sass-lint -c .sass-lint.yml -v -q -s scss \"client/**/*.scss\" || true) && (eslint \"client/**/*.js\" || true)",
"test": "karma start test/karma.conf.js",
"test-report-html": "COVERAGE_ENABLED=true karma start test/karma.conf.js",
"test-watch": "cross-env WATCH_MODE=true karma start test/karma.conf.js",
"test-tags": "cross-env WATCH_MODE=false karma run -- --grep",
"dev-install": "npm install phantomjs-prebuilt karma-phantomjs-launcher",
"test-run": "cross-env WATCH_MODE=false karma run -- --grep",
"prepush": "sass-lint -c .sass-lint.yml -v -q -s scss 'client/**/*.scss' && eslint \"client/**/*.js\" && npm run test",
"heroku-postbuild": "npm run build-client-no-tests"
},
"repository": {
"type": "git"
},
"engines": {
"node": ">=6.9.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"angular-mocks": "1.5.9",
"autoprefixer": "^6.5.3",
"babel-core": "6.22.1",
"babel-loader": "6.2.10",
"babel-polyfill": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-register": "6.22.0",
"body-parser": "^1.16.0",
"copy-webpack-plugin": "4.0.1",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"eslint": "2.10.2",
"eslint-loader": "1.3.0",
"express": "^4.14.1",
"express-history-api-fallback": "^2.1.0",
"extract-text-webpack-plugin": "2.0.0-rc.3",
"file-loader": "0.10.0",
"html-webpack-plugin": "2.28.0",
"husky": "^0.11.9",
"isparta-loader": "2.0.0",
"istanbul": "0.4.3",
"jasmine-core": "2.4.1",
"json-loader": "0.5.4",
"karma": "1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-nyan-reporter": "0.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "2.0.2",
"nedb": "^1.8.0",
"ng-annotate-loader": "0.2.0",
"node-sass": "4.5.0",
"nodemon": "^1.11.0",
"postcss-loader": "1.2.2",
"raw-loader": "0.5.1",
"sass-lint": "^1.10.2",
"sass-loader": "5.0.1",
"sasslint-webpack-plugin": "^1.0.4",
"socket.io": "^1.7.2",
"style-loader": "^0.13.1",
"supports-color": "3.1.2",
"url-loader": "0.5.7",
"webpack": "2.2.1",
"webpack-bundle-size-analyzer": "^2.2.3",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "2.3.0",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "2.6.1"
},
"dependencies": {
"angular": "1.5.9",
"angular-animate": "1.5.9",
"angular-aria": "1.5.9",
"angular-i18n": "1.5.9",
"angular-material": "^1.1.3",
"angular-material-data-table": "^0.10.10",
"angular-messages": "1.5.9",
"angular-socket-io": "^0.7.0",
"angular-ui-router": "^0.3.2",
"socket.io-client": "^1.7.2",
"whatwg-fetch": "^2.0.1"
}
}