forked from pope/snowpack-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "snowpack-test",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "snowpack build",
"format": "prettier --write '{public,src,types}/**/*.{ts,tsx,scss,html,js,json}' '*.{js,json}'",
"start": "snowpack dev",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch"
},
"devDependencies": {
"@snowpack/plugin-sass": "^1.3.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/web-test-runner-plugin": "^0.2.1",
"@testing-library/dom": "^7.29.4",
"@testing-library/preact": "^2.0.1",
"@types/chai": "^4.2.15",
"@types/css-font-loading-module": "^0.0.4",
"@web/test-runner": "^0.12.15",
"@web/test-runner-puppeteer": "^0.9.3",
"@web/test-runner-visual-regression": "0.4.1",
"chai": "^4.3.0",
"import-sort-style-module": "^6.0.0",
"prettier": "^2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"sass": "^1.32.7",
"snowpack": "^3.0.11",
"typescript": "^4.1.5"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"dependencies": {
"@material/theme": "^10.0.0",
"@material/typography": "^10.0.0",
"preact": "^10.5.12"
}
}