-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.07 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
119
120
121
122
123
{
"name": "dojo.io",
"version": "1.0.0",
"scripts": {
"build": "dojo build",
"build:dev": "dojo build -m=dev -s -w",
"build:ci": "tsc && npm run build",
"deploy:now": "npm run build && cp now.json ./output/dist && npx now ./output/dist --public",
"lint:tslint": "tslint -p .",
"lint:prettier": "prettier -l \"{src,tests,scripts}/**/*.{ts,tsx,css}\"",
"lint": "run-p lint:*",
"prettier": "prettier --write \"{src,tests,scripts}/**/*.{ts,tsx,css}\"",
"test": "jest",
"test:ci": "jest --coverage",
"uploadCoverage": "codecov --file=coverage/coverage-final.json"
},
"dependencies": {
"@dojo/framework": "6.0.0-alpha.12",
"@fortawesome/fontawesome-svg-core": "1.2.19",
"@fortawesome/free-solid-svg-icons": "5.9.0",
"tslib": "1.10.0"
},
"devDependencies": {
"@dojo/cli": "5.0.0",
"@dojo/cli-build-app": "6.0.0-alpha.7",
"@dojo/scripts": "4.0.2",
"@mapbox/rehype-prism": "0.3.1",
"@types/fs-extra": "8.0.0",
"@types/jest": "24.0.15",
"@types/node": "10.14.13",
"@types/node-fetch": "2.3.7",
"canonical-path": "1.0.0",
"chokidar-cli": "1.2.2",
"codecov": "3.5.0",
"feed": "4.0.0",
"fs-extra": "8.1.0",
"hast-to-hyperscript": "7.0.2",
"hast-util-to-string": "1.0.2",
"husky": "3.0.1",
"jest": "24.8.0",
"jest-date-mock": "1.0.7",
"lint-staged": "9.2.0",
"mdast-util-to-hast": "6.0.1",
"node-fetch": "2.6.0",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"refractor": "2.9.0",
"rehype": "9.0.0",
"remark-frontmatter": "1.3.2",
"remark-macro": "1.0.7",
"remark-parse": "6.0.3",
"remark-parse-yaml": "0.0.2",
"remark-rehype": "4.0.1",
"remark-stringify": "6.0.4",
"shx": "0.3.2",
"ts-jest": "24.0.2",
"typescript": "3.4.5",
"unified": "8.3.2"
},
"jest": {
"coveragePathIgnorePatterns": [
"node_modules",
"_build",
"output",
"\\.m\\.css",
"\\.m\\.css\\.d\\.ts"
],
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest",
"\\.(m.css|css)$": "<rootDir>/__mocks__/css-modules-transform"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js"
},
"testPathIgnorePatterns": [
"node_modules",
"_build",
"output",
"\\.m\\.css",
"\\.m\\.css\\.d\\.ts"
],
"testRegex": "((\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
},
"setupFiles": [
"jest-date-mock"
]
},
"lint-staged": {
"*.{ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"arrowParens": "always"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}