-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
123 lines (123 loc) · 3.81 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": "formio-sfds",
"version": "10.0.0",
"description": "The Form.io theme for sf.gov",
"module": "src/index.js",
"browser": "dist/formio-sfds.standalone.js",
"style": "dist/formio-sfds.css",
"engines": {
"node": ">= 14.x"
},
"scripts": {
"develop": "run-p watch watch-server",
"build": "run-s build-css build-js build-views",
"build-css": "postcss src/scss/formio-sfds.scss --ext css --dir dist",
"build-js": "rollup -c",
"build-views": "script/render-views",
"lint": "run-p lint-js lint-css",
"lint-css": "stylelint src/scss/**/*.scss",
"lint-js": "eslint src __tests__ lib api '*.js'",
"start": "node server.js",
"test": "jest",
"snaps": "npm run build-js && npm test -- -u",
"watch": "run-s build-css watch-all",
"watch-all": "run-p watch-css watch-js watch-views",
"watch-css": "watchy -w 'src/scss/**/*.scss' -- npm run build-css",
"watch-js": "rollup -c --watch",
"watch-views": "watchy -w 'views/*' -w src/examples.yml -w script/render-views -w lib/remark.js -- npm run build-views",
"watch-server": "nodemon server.js --ignore dist",
"watch-test": "jest --watch",
"publish-auto": "auto shipit"
},
"browserslist": [
"> 1%",
"ie 11"
],
"repository": "SFDigitalServices/formio-sfds",
"keywords": [
"formio",
"sf-design-system"
],
"author": "San Francisco Digital Services",
"license": "MIT",
"@primer/publish": {
"releaseBranch": "main"
},
"dependencies": {
"choices.js": "^9.0.1",
"dotmap": "^0.1.0",
"flatpickr": "^4.6.3",
"formiojs": "4.14.8",
"interpolate": "^0.1.0",
"uri-template-lite": "^19.12.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@auto-it/protected-branch": "^11.0.1",
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.10.2",
"@babel/runtime": "^7.11.2",
"@csstools/postcss-sass": "^4.0.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-dsv": "^2.0.1",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-yaml": "^2.1.1",
"@ungap/global-this": "^0.4.0",
"auto": "^11.0.1",
"autoprefixer": "^9.8.0",
"babel-plugin-lodash": "^3.3.4",
"classnames": "^2.3.1",
"dot-component": "^0.1.1",
"dotenv": "^8.2.0",
"eslint": "^7.28.0",
"eslint-plugin-sfgov": "^1.0.0",
"express": "^4.17.1",
"globby": "^11.0.1",
"hastscript": "^6.0.0",
"i18next": "19.7.0",
"jest": "^26.6.3",
"jest-serializer-html": "^7.1.0",
"js-yaml": "^3.14.0",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.1",
"postcss": "^8.4.14",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-inline-svg": "^4.1.0",
"postcss-scss": "^2.1.1",
"regenerator-runtime": "^0.13.5",
"remark": "^13.0.0",
"remark-autolink-headings": "^6.0.1",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-github": "^10.0.1",
"remark-highlight.js": "^6.0.0",
"remark-html": "^13.0.1",
"remark-slug": "^6.0.0",
"remark-yaml-config": "^5.0.0",
"rollup": "^2.11.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-define": "^1.0.1",
"rollup-plugin-jst": "^1.2.0",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-svgo": "^1.1.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.26.5",
"selector-observer": "^2.1.6",
"sf-design-system": "^1.3.0",
"source-map": "^0.7.4",
"stylelint": "^14.9.1",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-scss": "^4.2.0",
"unist-util-visit": "^2.0.3",
"us": "^2.0.0",
"watchy": "^0.9.7"
}
}