-
Notifications
You must be signed in to change notification settings - Fork 774
/
Copy pathpackage.json
98 lines (98 loc) · 2.63 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
{
"name": "share-drop",
"version": "1.0.0",
"private": true,
"description": "P2P file sharing",
"license": "MIT",
"author": "Szymon Nowak",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/cowbell/sharedrop.git"
},
"scripts": {
"build": "ember build --environment=production",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"develop": "nf --procfile=Procfile.dev start",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "ember test",
"heroku-postbuild": "ember build --environment=production"
},
"devDependencies": {
"@ember/jquery": "^1.1.0",
"@ember/optional-features": "^1.3.0",
"@glimmer/component": "^1.0.0",
"@glimmer/tracking": "^1.0.0",
"babel-eslint": "^10.1.0",
"broccoli-asset-rev": "^3.0.0",
"ember-auto-import": "^1.5.3",
"ember-cli": "~3.17.0",
"ember-cli-app-version": "^3.2.0",
"ember-cli-babel": "^7.18.0",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-dotenv": "^1.0.4",
"ember-cli-htmlbars": "^4.2.3",
"ember-cli-sass": "^10.0.0",
"ember-cli-sri": "^2.1.1",
"ember-cli-uglify": "^3.0.0",
"ember-export-application-global": "^2.0.1",
"ember-fetch": "^7.0.1",
"ember-load-initializers": "^2.1.1",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-qrcode-shim": "^0.4.0",
"ember-qunit": "^4.6.0",
"ember-resolver": "^7.0.0",
"ember-source": "~3.17.0",
"ember-template-lint": "^2.4.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-ember": "^8.4.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.0.1",
"foreman": "3.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"loader.js": "^4.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"qunit-dom": "^1.1.0",
"sass": "^1.26.5"
},
"dependencies": {
"body-parser": "^1.10.0",
"compression": "^1.2.2",
"cookie-parser": "^1.3.3",
"cookie-session": "^1.1.0",
"express": "^4.10.6",
"firebase-token-generator": "~2.0.0",
"lodash": "^4.17.11",
"morgan": "^1.5.0",
"newrelic": "^6.11.0",
"uuid": "^8.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn run prettier --write",
"yarn run lint:hbs",
"yarn run lint:js"
]
},
"engines": {
"node": "12.*"
},
"ember": {
"edition": "octane"
}
}