-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "enigma",
"author": "Sakhi Mansoor",
"description": "A blazingly fast web app for movies",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"serve": "gatsby serve",
"lint-web": "eslint --debug src/",
"lint": "eslint --debug src/",
"lint:write": "eslint --debug src/ --fix",
"prettier": "prettier --write src/**/*.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors"
},
"dependencies": {
"@material-ui/core": "^3.5.1",
"@material-ui/icons": "^3.0.1",
"@wapps/gatsby-plugin-material-ui": "^1.1.0",
"axios": "^0.18.0",
"crypto": "^1.0.1",
"gatsby": "^2.0.33",
"gatsby-image": "^2.0.19",
"gatsby-plugin-manifest": "^2.0.10",
"gatsby-plugin-offline": "^2.0.17",
"gatsby-plugin-sharp": "^2.0.11",
"gatsby-source-filesystem": "^2.0.7",
"gatsby-transformer-sharp": "^2.1.7",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-jest-enzyme": "^6.0.2",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"gh-pages": "^2.0.1",
"prettier-eslint": "^8.8.1"
}
}