-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "@nycopportunity/pttrn",
"nice": "Patterns CLI",
"version": "1.5.2",
"description": "A front-end CLI for building and managing design pattern libraries",
"author": "[email protected]",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/CityOfNewYork/patterns-cli/issues"
},
"homepage": "https://github.com/CityOfNewYork/patterns-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/CityOfNewYork/patterns-cli.git"
},
"main": "bin/cli.js",
"dependencies": {
"chokidar": "^3.5.2",
"concurrently": "^6.3.0",
"eslint": "^8.2.0",
"express": "^4.17.1",
"gh-pages": "^3.2.3",
"js-beautify": "^1.14.0",
"json-to-scss": "^1.3.1",
"marked": "^4.0.1",
"pa11y": "6.1.0",
"postcss": "^8.3.11",
"postcss-scss": "^4.0.2",
"reload": "^3.2.0",
"rollup": "^2.60.0",
"sass": "^1.43.4",
"slm": "^2.0.0",
"stylelint": "^14.0.1",
"svgo": "^2.8.0",
"svgstore": "^3.0.0-2"
},
"optionalDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.10",
"eslint-config-google": "^0.14.0",
"node-emoji": "^1.11.0",
"stylelint-config-standard": "^23.0.0",
"tailwindcss": "^2.2.19"
},
"scripts": {
"start": "cross-env NODE_ENV=development concurrently \"bin/cli.js -w\" \"bin/cli.js serve -w\" -p \"none\"",
"default": "cross-env NODE_ENV=production bin/cli.js default",
"version": "git add .",
"prepublishOnly": "git push && git push --tags",
"pttrn": "bin/cli.js"
},
"bin": {
"pttrn": "bin/cli.js"
}
}