-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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
{
"name": "first-contrib-project",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "parcel index.html --public-url / --open",
"build": "parcel build index.html --public-url https://first-contrib.surge.sh",
"deploy": "rm -rf ./dist && npm run build --public-url https://first-contrib.surge.sh && cp ./dist/index.html ./dist/200.html && rm ./dist/index.html && surge -p ./dist -d first-contrib.surge.sh",
"logs": "parcel build index.html --no-cache --detailed-report"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.11",
"apollo-client": "^2.2.7",
"apollo-link": "^1.2.1",
"apollo-link-error": "^1.0.9",
"apollo-link-http": "^1.5.3",
"graphql": "^0.13.2",
"graphql-tag": "^2.8.0",
"loaders.css": "^0.1.2",
"lodash.flatten": "^4.4.0",
"lodash.orderby": "^4.6.0",
"preact": "^8.2.9",
"preact-compat": "^3.18.0",
"preact-router": "^2.6.0",
"react-apollo": "^2.1.3",
"react-router-dom": "^4.2.2",
"time-ago": "0.2.1"
},
"alias": {
"react": "preact-compat",
"react-dom": "preact-compat"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"parcel-bundler": "^1.10.3",
"parcel-plugin-bundle-visualiser": "^1.1.2"
},
"keywords": []
}