-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "chat-app",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:msk4862/Anomly.git",
"author": "Shoaib Asgar <msk4862@gmail.com>",
"license": "MIT",
"engines": {
"node": "14"
},
"scripts": {
"format": "prettier \"*/**.{js,scss}\" --write",
"build": "next build",
"start": "next start",
"dev": "next",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@azure/storage-blob": "12.12.0",
"@zeit/next-sass": "^1.0.1",
"aws-sdk": "2.817.0",
"dayjs": "^1.9.7",
"express": "^4.17.1",
"next": "9.4.4",
"node-sass": "^4.14.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"socket.io": "4.5.4",
"socket.io-client": "4.5.4"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.8",
"babel-jest": "^26.2.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"husky": "^4.2.5",
"jest": "^26.2.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}