-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.14 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
72
{
"name": "frontend",
"version": "2.0.0",
"description": "",
"scripts": {
"lint": "./node_modules/.bin/eslint ./src",
"start": "parcel public/index.html",
"startNoCache": "parcel public/index.html --no-cache",
"build": "rm -rf dist && npm run lint && NODE_ENV=production && PUBLIC_URL=https://cloudfetch.info && parcel build public/index.html --out-dir ./dist --no-cache --no-source-maps",
"deploy": "gh-pages-deploy",
"clean-source": "rimraf README.md src public TODO .babelrc .eslintrc package.json"
},
"gh-pages-deploy": {
"staticpath": "dist",
"cname": "cloudfetch.info",
"prep": [
"build"
],
"commit": "deploy to gh-pages",
"post": [
"clean-source"
],
"noprompt": false
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@medv/finder": "^1.1.1",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bulma": "^0.7.2",
"bulma-extensions": "^1.0.14",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"graphql-request": "^1.4.1",
"gravatar-url": "^2.0.0",
"is-url": "^1.2.4",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"prop-types": "^15.6.2",
"query-str": "^1.1.3",
"react": "^16.7.0",
"react-beautiful-dnd": "^10.0.3",
"react-dom": "^16.7.0",
"react-driftjs": "^1.1.6",
"react-router-dom": "^4.2.2",
"set-query-string": "^2.2.0",
"timeago.js": "^3.0.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-react": "^7.6.0",
"gh-pages-deploy": "^0.5.1",
"install": "^0.12.2",
"node-sass": "^4.10.0",
"npm": "^6.5.0",
"parcel-bundler": "^1.10.3",
"rimraf": "^2.6.3"
}
}