-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2 KB
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
{
"name": "a-bugs-life",
"version": "1.0.0",
"description": "Bug Reporting Database designed for the Santa Clara University IT Department",
"main": "index.js",
"author": "Group 6 <propion@scu.edu>",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn build:clean && yarn build:dist",
"build:clean": "rimraf build",
"build:dist": "NODE_ENV='production' webpack --mode production --config=webpack/production.config.js",
"dev": "NODE_ENV=development parcel app/index.html",
"lint": "eslint --config ./.eslinrc.yml --fix src app"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@nivo/bar": "^0.51.5",
"@nivo/pie": "^0.51.0",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"email-validator": "^2.0.4",
"file-loader": "^2.0.0",
"history": "^4.7.2",
"luxon": "^1.4.3",
"memoize-one": "^4.0.2",
"moment": "^2.22.2",
"node-fetch": "^2.2.0",
"react": "^16.6",
"react-axios": "^2.0.1",
"react-dom": "^16.6",
"react-virtualized": "^9.21.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.83"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-react": "^7.11.1",
"faker": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^0.4.4",
"node-fetch": "^2.2.0",
"node-sass": "^4.9.3",
"parcel-bundler": "^1.10.2",
"prop-types": "^15.6.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"semantic-ui-react": "^0.83",
"string-replace-webpack-plugin": "^0.1.3",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
}
}