-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.93 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.93 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
{
"name": "reworks",
"version": "1.0.0",
"description": "The fashion industry is currently very unsustainable, with millions of clothes being wasted each year. Many of us don’t know what to do with our extra piles of clothes lying around and, more often than not, these clothes are thrown in a dump rather than being recycled, sold, or repurposed. Recently, even when we give to charity, they cannot deal with the amount of items donated. So what’s the solution?",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint ./server",
"eslint:fix": "eslint --fix ./server",
"client": " cd client && SKIP_PREFLIGHT_CHECK=true npm run build",
"dev": " npm run client && nodemon ./server/server.js ",
"start": "node ./server/server.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACK1/ReWorks.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACK1/ReWorks/issues"
},
"homepage": "https://github.com/FACK1/ReWorks#readme",
"dependencies": {
"airtable": "^0.5.9",
"aws-sdk": "^2.425.0",
"bcryptjs": "^2.4.3",
"clarifai": "^2.9.0",
"cookie": "^0.3.1",
"env2": "^2.2.2",
"express": "^4.16.4",
"file-type": "^10.9.0",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.19",
"multiparty": "^4.2.1",
"nodemon": "^1.18.10",
"react": "^16.8.6",
"react-csv": "^1.1.1",
"react-dom": "^16.8.6",
"react-loading": "^2.0.3",
"react-router-dom": "^5.0.0",
"styled-components": "^4.2.0",
"styled-react-modal": "^1.2.1"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4"
}
}