-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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": "GoogleContacts",
"version": "1.0.0",
"description": "Coding Challange",
"main": "index.js",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"connect-pg-simple": "^5.0.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"googleapis": "^39.2.0",
"pg-format": "^1.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"uuid": "^3.3.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.7.1",
"react-test-renderer": "^16.8.6"
},
"scripts": {
"test": "jest --detectOpenHandles",
"dev": "nodemon index.js",
"prestart": "webpack -p",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tmunayyer/GoogleContacts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tmunayyer/GoogleContacts/issues"
},
"homepage": "https://github.com/Tmunayyer/GoogleContacts#readme",
"jest": {
"moduleNameMapper": {
"^.+\\.scss$": "<rootDir>/scripts/mocks/style-mock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/client/test/setupTest.js"
]
}
}