-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.92 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "whatsupp",
"private": true,
"description": "Whatsapp sentiment analysis",
"version": "0.1.0",
"author": "Abigail Coe",
"dependencies": {
"@types/enzyme": "^3.9.2",
"@types/jest": "^24.0.13",
"@types/react-helmet": "^5.0.8",
"axios": "^0.18.0",
"enzyme": "^3.9.0",
"gatsby": "^2.4.3",
"gatsby-image": "^2.0.41",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-offline": "^2.1.0",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.0.37",
"gatsby-plugin-tslint": "^0.0.2",
"gatsby-plugin-typescript": "^2.0.13",
"gatsby-source-filesystem": "^2.0.33",
"gatsby-transformer-sharp": "^2.1.19",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"babel-jest": "^24.8.0",
"babel-preset-gatsby": "^0.1.11",
"enzyme-adapter-react-16": "^1.13.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-mock-axios": "^3.0.0",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"lint": "tslint --project .",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/abinocoe/whatsupp"
},
"bugs": {
"url": "https://github.com/abinocoe/whatsupp/issues"
},
"jest": {
"setupTestFrameworkScriptFile": "./test/setupTests.js"
}
}