forked from FredKSchott/snowpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.12 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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --scope=esinstall --scope=snowpack --scope=skypack",
"build:watch": "lerna run build:watch --parallel --scope=esinstall --scope=snowpack --scope=skypack",
"build:docs": "cd www && yarn build",
"bundle": "lerna run bundle --scope=snowpack",
"publish": "npm run build && npm run bundle && lerna publish --no-private",
"lint": "lerna run lint --parallel --scope=esinstall --scope=snowpack --scope=skypack",
"format": "prettier --write '{snowpack,skypack,esinstall}/src/**/*.{ts,js,json}' '{scripts,test,plugins,create-snowpack-app}/**/*.{ts,js,json}' '{.dependabot,.github,www}/**/*.{md,yml,js}'",
"test": "jest --testPathIgnorePatterns=/test-dev/ --test-timeout=30000",
"test:dev": "jest /test-dev/ --test-timeout=30000",
"test:docs": "cd www && yarn && yarn test --passWithNoTests"
},
"workspaces": [
"esinstall",
"esm-runtime",
"snowpack",
"skypack",
"create-snowpack-app/*",
"plugins/*",
"test/build/*",
"test/esinstall/*"
],
"devDependencies": {
"@rollup/plugin-alias": "^3.0.1",
"@skypack/package-check": "^0.2.0",
"@types/babel__traverse": "^7.0.7",
"@types/cacache": "^12.0.1",
"@types/compressible": "^2.0.0",
"@types/css-modules-loader-core": "^1.1.0",
"@types/detect-port": "^1.3.0",
"@types/es-module-lexer": "^0.3.0",
"@types/etag": "^1.8.0",
"@types/http-proxy": "^1.17.4",
"@types/mime-types": "^2.1.0",
"@types/mkdirp": "^1.0.0",
"@types/node": "^14.14.14",
"@types/rimraf": "^3.0.0",
"@types/signal-exit": "^3.0.0",
"@types/validate-npm-package-name": "^3.0.0",
"@types/ws": "^7.2.4",
"cheerio": "^1.0.0-rc.3",
"cross-env": "^7.0.2",
"execa": "^5.0.0",
"httpie": "^1.1.2",
"jest": "^26.2.2",
"jest-specific-snapshot": "^4.0.0",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"strip-ansi": "^6.0.0",
"typescript": "^4.0.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"printWidth": 100
}
}