forked from mainmatter/mainmatter.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.73 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "simplabs",
"version": "0.0.0",
"description": "A brand new Glimmer app.",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "PRERENDER=1 ember build -prod && node scripts/prerender.js",
"crawl": "node scripts/crawl.js",
"start": "ember server",
"test": "ember test",
"lint:ts": "tslint -c tslint.json 'src/**/*.ts' -t codeFrame",
"lint:js": "eslint . --cache",
"lint:css": "prettier --check '{src,lib}/**/*.css'",
"lint:hbs": "prettier --check --parser glimmer '**/*.hbs'",
"lint:md": "prettier --check '**/*md'",
"lint": "yarn run lint:ts; yarn run lint:js; yarn run lint:hbs; yarn run lint:css; yarn run lint:md",
"format:ts": "tslint --fix -c tslint.json 'src/**/*.ts'",
"format:js": "eslint --fix . --cache",
"format:css": "prettier '{src,lib}/**/*.css' --write",
"format:hbs": "prettier --write --parser glimmer '**/*.hbs'",
"format:md": "prettier --write '**/*md'",
"format": "yarn run format:ts; yarn run format:js; yarn run format:hbs; yarn run format:css; yarn run format:md",
"percy": "percy exec -- node scripts/percy.js"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@css-blocks/ember-cli": "^0.21.0",
"@glimmer/application": "^0.13.0",
"@glimmer/application-pipeline": "^0.14.0",
"@glimmer/blueprint": "~0.13.0",
"@glimmer/component": "^0.13.0",
"@glimmer/inline-precompile": "^1.0.0",
"@glimmer/resolver": "^0.4.3",
"@glimmer/ssr": "^0.13.0",
"@glimmer/test-helpers": "^0.31.1",
"@percy/script": "^1.0.0",
"@types/navigo": "^7.0.1",
"@types/qunit": "^2.0.31",
"broccoli-asset-rev": "^2.5.0",
"broccoli-caching-writer": "^3.0.3",
"broccoli-clean-css": "^2.0.1",
"broccoli-debug": "^0.6.5",
"broccoli-file-creator": "^2.1.1",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^3.0.2",
"broccoli-stew": "^2.0.1",
"broccoli-string-replace": "^0.1.2",
"broccoli-typescript-compiler": "^4.1.0",
"clean-css": "^4.2.1",
"colors": "^1.3.3",
"dateformat": "^3.0.3",
"ember-cli": "^3.7.1",
"ember-cli-dependency-checker": "^2.0.1",
"ember-cli-inject-live-reload": "^1.6.1",
"ember-cli-tslint": "^0.1.3",
"ember-cli-uglify": "^2.0.0-beta.1",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-simplabs": "^0.4.0",
"eslint-plugin-prettier": "^3.0.1",
"express": "^4.16.4",
"front-matter": "^3.0.1",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"handlebars": "^4.1.1",
"headless-chrome-crawler": "^1.8.0",
"highlight.js": "^9.15.6",
"html-entities": "^1.2.1",
"jsdom": "^14.0.0",
"lodash": "^4.17.11",
"marked": "^0.6.1",
"morgan": "^1.3.2",
"navigo": "^7.1.2",
"percy": "^0.7.2",
"pretender": "^3.0.1",
"prettier": "^1.16.4",
"puppeteer": "^1.14.0",
"qunitjs": "^2.3.3",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-virtual": "^1.0.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~2.6.0"
},
"engines": {
"node": ">= 4.0"
},
"private": true,
"ember-addon": {
"paths": [
"lib/generate-blog",
"lib/generate-calendar",
"lib/generate-talks-archive",
"lib/global-css",
"lib/google-analytics",
"lib/head-data",
"lib/routes",
"lib/sentry",
"lib/service-workers"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"dependencies": {}
}