-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.89 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
{
"name": "alt-json",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"license": "MIT",
"author": "Luma <world@luma.email>",
"type": "module",
"main": "index.js",
"scripts": {
"test": "run-s test:*",
"test:types": "tsc --noEmit",
"prebuild": "node ./scripts/prebuild.cjs",
"build": "pnpm run prebuild && snowpack build",
"dev": "pnpm run prebuild && snowpack dev",
"start": "sirv build",
"lint": "run-s lint:*",
"lint:prettier": "prettier \"**/*.html\" -c",
"lint:stylelint": "stylelint \"src/**/*\"",
"lint:eslint": "eslint --color --ext .js,.mjs,.cjs,.json,.ts .",
"lint-fix": "run-s lint-fix:*",
"lint-fix:prettier": "prettier \"**/*.html\" -w",
"lint-fix:stylelint": "pnpm run lint:stylelint -- --fix",
"lint-fix:eslint": "pnpm run lint:eslint -- --fix"
},
"devDependencies": {
"@architect/parser": "4.0.1",
"@iarna/toml": "2.2.5",
"@luma-dev/eslint-config-base": "0.3.0",
"@luma-dev/prettier-config": "0.1.0",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@snowpack/plugin-sass": "1.4.0",
"@snowpack/plugin-typescript": "1.2.1",
"@types/eslint": "7.28.0",
"@types/iarna__toml": "2.0.2",
"better-typescript-lib": "1.1.0",
"esbuild": "0.9.7",
"eslint": "7.32.0",
"js-hcl-parser": "1.0.1",
"json5": "2.2.0",
"jsonc-parser": "3.0.0",
"monaco-editor": "0.25.2",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"rollup": "2.56.3",
"sirv-cli": "1.0.14",
"snowpack": "3.8.2",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "22.0.0",
"stylelint-prettier": "1.2.0",
"stylelint-scss": "3.20.1",
"typescript": "4.4.2",
"yaml": "1.10.2"
},
"engines": {
"npm": "forbidden, use npm",
"pnpm": ">=6",
"yarn": "forbidden, use npm"
}
}