forked from scottohara/loot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.52 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
{
"name": "loot",
"version": "0.0.0",
"description": "Web-based personal finance management application",
"keywords": [
"money",
"finance",
"personal finance"
],
"repository": {
"type": "git",
"url": "git://github.com/scottohara/loot.git"
},
"author": "Scott O'Hara",
"license": "MIT",
"bugs": {
"url": "https://github.com/scottohara/loot/issues"
},
"homepage": "https://github.com/scottohara/loot",
"dependencies": {
"@uirouter/angularjs": "1.0.11",
"angular": "1.6.7",
"angular-ui-bootstrap": "2.5.6",
"babel-minify-webpack-plugin": "0.2.0",
"bootstrap": "3.3.7",
"clean-webpack-plugin": "0.1.17",
"copy-webpack-plugin": "4.2.3",
"css-loader": "0.28.7",
"date-fns": "2.0.0-alpha.7",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.5",
"html-loader": "0.5.1",
"html-webpack-plugin": "2.30.1",
"jquery": "3.2.1",
"less": "2.7.3",
"less-loader": "4.0.5",
"ngtemplate-loader": "2.0.1",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-merge": "4.1.1",
"workbox-webpack-plugin": "2.1.2"
},
"devDependencies": {
"angular-mocks": "1.6.7",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"eslint": "4.12.0",
"eslint-config-oharagroup": "2.3.0",
"ignore-loader": "0.1.2",
"istanbul-instrumenter-loader": "3.0.0",
"karma": "1.7.1",
"karma-chai": "0.1.0",
"karma-chai-as-promised": "0.1.2",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.6",
"mocha": "4.0.1",
"open-browser-webpack-plugin": "0.0.5",
"protractor": "5.2.0",
"sinon": "4.1.2",
"sinon-chai": "2.14.0",
"webpack-livereload-plugin": "1.0.0"
},
"scripts": {
"start": "heroku local --procfile Procfile.dev",
"start:test": "heroku local --procfile Procfile.test",
"start:db": "postgres -D /usr/local/var/postgres",
"postinstall": "npm run build",
"build": "webpack --progress --config webpack.prod.js",
"watch": "webpack --watch --config webpack.dev.js",
"lint": "eslint 'src/**/*.js' 'spec/public/**/*.js' '*.js'",
"test": "npm run lint && npm run test:coverage",
"test:bdd": "karma start karma-bdd.conf.js",
"test:coverage": "karma start",
"test:e2e": "npm run build && npm run start:test"
},
"engines": {
"node": "8.9.1",
"npm": "5.5.1"
}
}