This repository has been archived by the owner on Aug 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.62 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": "snapgit",
"version": "1.0.0",
"description": "Website for snapgit.com",
"engines": {
"node": "^5.10.1",
"npm": "^3.8.6"
},
"scripts": {
"build": "rm -rf public && gatsby build && npm run copy-static",
"copy-static": "cp -r static/* public/",
"deploy": "gh-pages -d public",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint \"**/**.css\"",
"lint:js": "eslint --ext .js,.jsx --ignore-pattern public .",
"publish": "NODE_ENV=production npm run build && npm run deploy",
"start": "gatsby develop",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"snapgit"
],
"author": "Patrick Camacho",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.3",
"react": "^0.14.7",
"react-document-title": "^2.0.1",
"react-fontawesome": "^0.3.3",
"react-router": "^2.0.1",
"typography": "^0.7.0"
},
"devDependencies": {
"babel-eslint": "^6.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^4.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"gatsby": "^0.9.0",
"gh-pages": "^0.11.0",
"postcss-browser-reporter": "^0.4.0",
"postcss-cssnext": "^2.5.1",
"postcss-import": "^8.0.2",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^1.3.3",
"stylelint": "^5.4.0",
"stylelint-config-standard": "^5.0.0",
"stylelint-loader": "^5.0.0",
"url-loader": "^0.5.7"
}
}