-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
98 lines (98 loc) · 3.16 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
{
"name": "fdns-ui-react",
"version": "0.9.1",
"description": "This is the open source UI library for react components using Foundation Services (FDNS).",
"main": "dist/index.js",
"jsnext:main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"start": "npx styleguidist server",
"prepare": "npm run babel && npm run sass",
"styleguide-build": "styleguidist build",
"babel": "babel src -d dist",
"sass": "node-sass ./src/styles/fdns-ui-react.scss --recursive --output dist/styles --output-style compressed",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"test": "npm run test:lint && jest",
"test:jest": "node ./node_modules/jest/bin/jest.js ./__tests__",
"test:watch": "node ./node_modules/jest/bin/jest.js --watch ./__tests__",
"test:lint": "node ./node_modules/eslint/bin/eslint.js ./src",
"test:lint:fix": "node ./node_modules/eslint/bin/eslint.js ./src --fix"
},
"jest": {
"setupFilesAfterEnv": [
"./src/setupTests.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/CDCgov/fdns-ui-react.git"
},
"author": "Centers for Disease Control and Prevention (http://github.com/CDCgov)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.6",
"chai": "^4.1.2",
"classnames": "^2.2.6",
"css-loader": "^2.1.1",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^1.1.11",
"jest": "^24.1.0",
"jsdom": "^11.12.0",
"mocha": "^8.1.3",
"node-sass": "^6.0.1",
"prop-types": "^15.6.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-styleguidist": "^11.1.0",
"react-test-renderer": "^16.8.3",
"sass-loader": "^7.1.0",
"sinon": "^5.1.1",
"style-loader": "^0.21.0",
"url-loader": "^1.1.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@date-io/luxon": "^1.0.1",
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-regular-svg-icons": "^5.3.1",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@material-ui/core": "^4.0.0",
"@material-ui/icons": "^4.0.0",
"@material-ui/pickers": "3.0.0",
"animate.css": "^3.7.0",
"babel-runtime": "^6.26.0",
"flexbox": "0.0.3",
"i": "^0.3.6",
"interactjs": "^1.3.4",
"jsonpath": "^1.0.2",
"lodash": "^4.17.20",
"luxon": "^1.10.0",
"moment": "^2.19.4",
"object-dig": "^0.1.0",
"polyfill": "^0.1.0",
"react-day-picker": "^7.2.4",
"react-draggable": "^3.0.5",
"react-dropzone": "^4.3.0",
"react-virtualized": "^9.21.0"
}
}