-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "doteos-back",
"version": "0.0.1",
"description": "A back-end project that manages the Doteos Artist Showcase.",
"main": "src/server.ts",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.test.ts\\",
"start": "nodemon src/server.ts --ignore './repo/'"
},
"dependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@types/supertest": "^2.0.8",
"babel-eslint": "^10.0.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"express": "^4.16.3",
"helmet": "^3.12.1",
"joi": "^17.2.0",
"mocha": "^7.1.1",
"mongoose": "^5.2.3",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.0",
"multer": "^1.4.2",
"nodemon": "^2.0.2",
"secure-password": "^4.0.0",
"simple-git": "^1.130.0",
"supertest": "^4.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"valid-url": "^1.0.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adindotdev/doteos-artist-showcase-back-end.git"
},
"author": "Adin Kwok and Calvin Hong",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/adindotdev/doteos-artist-showcase-back-end/issues"
},
"homepage": "https://adin.dev",
"devDependencies": {
"@types/express": "^4.17.3",
"@types/joi": "^14.3.4",
"@types/multer": "^1.4.2",
"@types/secure-password": "^3.1.0",
"@types/valid-url": "^1.0.2"
}
}