-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
107 lines (107 loc) · 3.96 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
{
"name": "us-forms-system",
"version": "1.1.0",
"description": "Build React forms with JSON Schema and the U.S. Web Design System",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"autoprefix": "npx postcss lib/css/styles.css --use autoprefixer -map -d lib/css/",
"build": "npm run clean -s && npm run lint && npm run compile-js && npm run compile-sass && npm run autoprefix && npm run copy-uswds -s",
"ci": "npm run build && npm run test",
"clean": "rm -rf lib/",
"compile-js": "npx babel -q src/js --source-maps --out-dir lib/js",
"compile-sass": "node-sass -q --source-map lib/css/ --source-map-embed false --include-path src/scss/styles.scss src/scss/styles.scss -o lib/css/",
"copy-uswds": "cp -R node_modules/uswds/dist/fonts lib/ && cp -R node_modules/uswds/dist/img lib/",
"lint": "npm run lint:js && npm run lint:sass && npm run lint:md",
"lint:md": "git diff-tree --no-commit-id --name-only -r HEAD -- '*.md' | xargs -I FILE npx markdown-link-check FILE",
"lint:md-full": "git ls-files '*.md' | xargs -I FILE npx markdown-link-check -q FILE",
"lint:js": "eslint --quiet --ext .js --ext .jsx .",
"lint:sass": "sass-lint -c test/config/sass-lint.yaml --verbose",
"test": "BABEL_ENV=test mocha --require babel-core/register --require test/config/unit-test-setup.js --require test/config/enzyme-setup.jsx './test/**/*.spec.js?(x)' "
},
"repository": {
"type": "git",
"url": "git+https://github.com/usds/us-forms-system.git"
},
"author": "",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/usds/us-forms-system/issues"
},
"homepage": "https://github.com/usds/us-forms-system#readme",
"devDependencies": {
"autoprefixer": "^8.6.5",
"axe-core": "^2.4.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-istanbul": "^5.1.1",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.18.0",
"blob-polyfill": "^2.0.20171115",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"choma": "^1.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-15": "^1.3.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-chai-expect": "^1.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-no-unsafe-innerhtml": "^1.0.14",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-scanjs-rules": "^0.1.4",
"eslint-stats": "^1.0.1",
"foundation-sites": "^5.5.3",
"isomorphic-fetch": "http://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
"jsdom": "^13.2.0",
"jsonschema": "^1.1.1",
"lodash": "^4.17.15",
"lodash-deep": "^2.0.0",
"markdown-link-check": "^3.7.2",
"mocha": "^5.2.0",
"node-sass": "^4.12.0",
"null-loader": "^0.1.1",
"postcss-cli": "^5.0.1",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-test-renderer": "^15.5.4",
"redux-thunk": "^2.3.0",
"sass-lint": "^1.13.1",
"sinon": "^6.3.5",
"skin-deep": "^1.0.0",
"uswds": "^1.6.9"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.6.2",
"uswds": "^1.6.3"
},
"dependencies": {
"@department-of-veterans-affairs/react-jsonschema-form": "^1.0.0",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"downshift": "^1.31.16",
"fast-levenshtein": "^2.0.6",
"history": "3",
"react-redux": "4.4.8",
"react-router": "3",
"react-scroll": "^1.7.11",
"react-transition-group": "^1.1.2",
"recompose": "^0.21.2",
"redux": "^3.5.2",
"reselect": "^2.5.4"
}
}