-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "TheUiGuy",
"version": "1.0.0",
"description": "Portfolio Website",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"start": "node dist/index.js",
"serve": "nodemon lib/index.js --exec babel-node",
"serve:debug": "nodemon --inspect lib/index.js --exec babel-node",
"build": "babel lib -d dist",
"lint": "eslint . --fix",
"precommit": "npm run lint",
"prepush": "npm run lint && npm test"
},
"repository": {
"type": "git"
},
"author": "Achyut Jhunjhunwala",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.2"
},
"dependencies": {
"@purest/providers": "^1.0.4",
"@request/client": "^0.1.0",
"@request/oauth": "^0.1.0",
"body-parser": "^1.20.2",
"bluebird": "^3.7.2",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"flickrapi": "^0.6.2",
"fs": "0.0.1-security",
"grant-express": "^5.4.8",
"isomorphic-fetch": "^3.0.0",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"purest": "^4.0.3",
"uuid": "^9.0.1",
"winston": "^3.11.0"
}
}