forked from ember-learn/super-rentals-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
{
"name": "super-rentals-tutorial",
"version": "0.0.0",
"description": "Runnable super-rentals tutorial",
"main": "index.js",
"author": "Godfrey Chan",
"license": "MIT",
"private": true,
"devDependencies": {
"@actions/core": "^1.2.6",
"@types/glob": "^7.1.1",
"@types/image-size": "^0.7.0",
"@types/mdast": "^3.0.2",
"@types/mkdirp": "^0.5.2",
"@types/ncp": "^2.0.1",
"@types/node": "^12.7.2",
"@types/puppeteer": "^2.0.0",
"@types/unist": "^2.0.3",
"@types/vfile": "^3.0.2",
"chalk": "^2.4.2",
"ember-cli": "*",
"ember-dictionary": "^0.2.3",
"image-size": "^0.7.4",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"node-glob": "^1.2.0",
"puppeteer": "~2.1.1",
"rehype-stringify": "^6.0.0",
"remark": "^11.0.1",
"remark-cli": "^7.0.0",
"remark-frontmatter": "^1.3.2",
"remark-lint": "^6.0.5",
"remark-lint-list-item-indent": "^1.0.4",
"remark-parse": "^7.0.1",
"remark-parse-yaml": "^0.0.3",
"remark-preset-lint-consistent": "^2.0.3",
"remark-preset-lint-recommended": "^3.0.3",
"remark-rehype": "^5.0.0",
"remark-retext": "^3.1.3",
"remark-stringify": "^7.0.2",
"retext-contractions": "^3.0.0",
"retext-english": "^3.0.3",
"retext-indefinite-article": "^1.1.7",
"retext-repeated-words": "^2.0.0",
"retext-spell": "^3.0.0",
"retext-syntax-urls": "^1.0.2",
"shx": "^0.3.2",
"ts-std": "^0.7.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"unified": "^8.4.0"
},
"scripts": {
"clean": "shx rm -rf dist",
"lint": "yarn lint:ts && yarn lint:md",
"lint:ts": "tslint --project .",
"lint:md": "remark . --frail",
"lint:md:src": "yarn lint:md --ignore-pattern dist",
"lint:md:dist": "yarn lint:md --ignore-pattern src",
"precompile": "yarn lint:ts",
"compile": "tsc",
"generate": "node ./dist/bin/generate.js",
"prebuild": "yarn clean && yarn compile && yarn lint:md:src",
"build": "yarn generate",
"postbuild": "yarn lint:md:dist"
},
"volta": {
"node": "12.18.3",
"yarn": "1.22.4"
}
}