-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 3.41 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
95
96
97
98
99
100
101
{
"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.1.0",
"angular": "1.8.3",
"angular-ui-bootstrap": "2.5.6",
"bootstrap": "3.4.1",
"date-fns": "3.3.1",
"jquery": "3.7.1"
},
"devDependencies": {
"@types/angular": "1.8.9",
"@types/angular-mocks": "1.7.4",
"@types/angular-ui-bootstrap": "1.0.7",
"@types/angular-ui-router": "1.1.44",
"@types/chai": "4.3.11",
"@types/jquery": "3.5.29",
"@types/mocha": "10.0.6",
"@types/sinon-chai": "3.2.12",
"angular-mocks": "1.8.3",
"chai": "4.4.1",
"concurrently": "8.2.2",
"copy-webpack-plugin": "12.0.2",
"coverage-istanbul-loader": "3.0.5",
"css-loader": "6.10.0",
"cypress": "13.12.0",
"eslint": "9.9.1",
"eslint-config-oharagroup": "5.0.2",
"html-loader": "5.0.0",
"html-webpack-plugin": "5.6.0",
"ignore-loader": "0.1.2",
"karma": "6.4.2",
"karma-chai": "0.1.0",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "5.0.1",
"mini-css-extract-plugin": "2.8.1",
"mocha": "10.3.0",
"ngtemplate-loader": "2.1.0",
"prettier": "3.2.5",
"process": "0.11.10",
"sinon": "18.0.0",
"sinon-chai": "3.7.0",
"ts-loader": "9.5.1",
"typescript": "5.6.2",
"webpack": "5.91.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"webpack-merge": "5.10.0",
"workbox-webpack-plugin": "7.0.0"
},
"scripts": {
"start": "concurrently --prefix-colors auto npm:api npm:db npm:ui",
"api": "bundle exec op run --env-file=.env -- rails server",
"api:test": "npm run api -- --environment=test",
"db": "postgres -D /opt/homebrew/var/postgres",
"ui": "webpack serve --config webpack.dev.js",
"build": "webpack --progress --config webpack.prod.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"rspec": "bundle exec op run --env-file=.env -- rake spec",
"cypress": "op run --env-file=.env -- cypress open --e2e --browser chrome",
"test": "npm run format:check && npm run lint && npm run test:coverage",
"test:backend": "concurrently --prefix-colors auto --hide db --kill-others npm:db npm:rspec",
"test:bdd": "karma start karma-bdd.conf.js",
"test:coverage": "karma start",
"test:e2e": "npm run build && concurrently --prefix-colors auto --kill-others npm:api:test npm:db npm:cypress",
"deploy": "fly deploy --build-arg NODE_VERSION=$npm_package_engines_node --build-arg NPM_VERSION=$npm_package_engines_npm --build-arg RUBY_VERSION=$npm_package_engines_ruby",
"deploy:staging": "npm run deploy -- --app loottest",
"deploy:production": "npm run deploy -- --app lootprod",
"swap:check": "fly ssh console --command 'free'"
},
"engines": {
"node": "20.11.1",
"npm": "10.5.0",
"ruby": "3.3.1"
}
}