-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.54 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
{
"name": "houndstooth",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bowtie/api": "^0.5.0",
"@bowtie/houndstooth-sdk": "^1.0.2",
"@bowtie/react-utils": "^0.1.1",
"@bowtie/utils": "^0.3.0",
"@craco/craco": "^3.6.0",
"@octokit/rest": "^16.15.0",
"@tinymce/tinymce-react": "^2.4.0",
"airbrake-js": "^1.1.2",
"async": "^2.6.2",
"bootstrap": "^4.1.3",
"braces": "^3.0.2",
"cross-fetch": "^2.2.0",
"deepmerge": "^3.0.0",
"draft-js": "^0.10.5",
"draftjs-to-html": "^0.8.4",
"eventemitter2": "^5.0.1",
"html-to-draftjs": "^1.4.0",
"jquery": "^3.3.1",
"libphonenumber-js": "^1.2.15",
"moment": "^2.22.2",
"node-pre-gyp": "^0.12.0",
"node-sass": "^4.11.0",
"parse-link-header": "^1.0.1",
"prop-types": "^15.6.2",
"pubnub": "^4.21.0",
"qs": "^6.5.2",
"rc-time-picker": "^3.3.1",
"react": "^16.8.6",
"react-ace": "^6.1.3",
"react-color": "^2.14.1",
"react-dates": "^19.0.2",
"react-datetime": "^2.14.0",
"react-dom": "^16.8.6",
"react-draft-wysiwyg": "^1.12.13",
"react-dropzone": "^4.2.11",
"react-file-base64": "^1.0.3",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^3.0.0",
"react-scroll": "^1.7.11",
"react-select": "^1.2.1",
"reactstrap": "^6.4.0",
"recompose": "^0.27.1",
"sass-loader": "^6.0.6",
"showdown": "^1.8.6",
"tar": "^4.4.8",
"timers": "^0.1.1",
"typescript": "^3.4.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-shallow-until": "^1.0.1",
"jest-enzyme": "^7.0.2",
"source-map-explorer": "^1.6.0",
"standard": "^11.0.1",
"terser-webpack-plugin": "^1.1.0",
"webpack-cli": "^3.1.2"
},
"scripts": {
"build:dll": "webpack --config config/webpack.dll.js",
"analyze": "for j in build/static/js/*.chunk.js; do source-map-explorer $j --html > tmp/$(basename $j).html; done",
"start": "craco start",
"build": "craco build",
"scan": "npm audit",
"test": "APP_ENV=test craco test",
"ci": "npm run lint && npm test",
"lint": "standard",
"lint:fix": "standard --fix"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
]
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"standard": {
"ignore": [
"public/**/*.js"
]
}
}