-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·94 lines (94 loc) · 3.09 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
{
"name": "trace",
"version": "0.0.1",
"description": "A privacy-focused tool for discovering, tracking, and sharing your online accounts.",
"author": "TRACE Digital",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/TRACE-Digital/TRACE.git"
},
"bugs": {
"url": "https://github.com/TRACE-Digital/TRACE/issues"
},
"directories": {
"doc": "docs"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.1",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@octokit/core": "^3.3.2",
"aws-amplify": "^3.3.21",
"bad-words": "^3.0.4",
"body-parser": "^1.19.0",
"bootstrap": "4.5.3",
"chart.js": "2.9.4",
"classnames": "2.2.6",
"color-difference": "^0.3.4",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.0.0",
"download": "^8.0.0",
"express": "^4.17.1",
"multiselect-react-dropdown": "^1.6.11",
"node-sass": "^4.14.1",
"node-sass-package-importer": "5.3.2",
"perfect-scrollbar": "1.5.0",
"popper": "^1.0.1",
"popper.js": "^1.16.1",
"prop-types": "15.7.2",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-bootstrap": "^1.5.2",
"react-card-flip": "^1.1.0",
"react-chartjs-2": "2.11.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-edit-text": "^4.0.1",
"react-gesture-responder": "^2.1.0",
"react-grid-dnd": "^2.1.2",
"react-notification-alert": "0.0.13",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.1",
"react-toggle-button": "^2.2.0",
"reactstrap": "8.7.1",
"trace-search": "^0.0.5",
"webpack": "^4.44.2"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-append-prepend": "^1.0.8"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && gulp licenses",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"compile-scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/black-dashboard-react.scss src/assets/css/black-dashboard-react.css",
"minify-scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/black-dashboard-react.scss src/assets/css/black-dashboard-react.min.css --output-style compressed",
"map-scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js src/assets/scss/black-dashboard-react.scss src/assets/css/black-dashboard-react.css --source-map true"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"optionalDependencies": {
"eslint-plugin-flowtype": "5.2.0",
"jquery": "^3.6.0",
"typescript": "4.1.2"
}
}