forked from cardstack/cardstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.12 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.12 KB
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
{
"name": "cardstack",
"version": "0.0.0",
"description": "Cardstack suite for ambitious applications.",
"repository": "https://github.com/cardstack/cardstack",
"author": "Edward Faulkner <edward@eaf4.com>",
"license": "MIT",
"engines": {
"node": ">= 12"
},
"dependencies": {
"@types/chai": "^4.2.6",
"@types/chai-as-promised": "^7.1.2",
"@types/console-ui": "^2.2.3",
"@types/filenamify-url": "^1.0.1",
"@types/json-stable-stringify": "^1.0.32",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.6",
"@types/moment-timezone": "^0.5.12",
"@types/node": "11.13.8",
"@types/rimraf": "^2.0.3",
"@types/sinon": "^7.5.1",
"@types/tmp": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"ember-template-lint": "^1.13.2",
"eslint": "^5.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-ember": "^5.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^3.1.1",
"glob": "^7.1.2",
"lerna": "3.16.4",
"mocha": "^5.2.0",
"prettier": "^1.19.1",
"typescript": "3.7.2"
},
"scripts": {
"clean": "git clean -x -f",
"compile": "tsc --build ./tsconfig.json",
"prepare": "npm run compile",
"test": "npm run lint:deps && npm run lint:js && npm run node-tests && npm run ember-tests",
"node-tests": "mocha ./packages/test-support/bin/run.js --timeout 60000",
"lint:deps": "node scripts/find-bad-deps.js",
"lint:js": "eslint . --cache --ignore-path .gitignore --ext=js,ts && cd packages/cardhost && ../../node_modules/.bin/ember-template-lint ember-template-lint .",
"lint:hbs": "cd packages/cardhost && ../../node_modules/.bin/ember-template-lint ember-template-lint .",
"ember-tests": "cd packages/cardhost && ../../node_modules/.bin/ember test",
"server": "node packages/hub/bin/server.js"
},
"workspaces": [
"packages/*",
"cards/*"
],
"private": true,
"volta": {
"node": "12.13.1",
"yarn": "1.22.0"
}
}