-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.25 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "project-dedalus",
"description": "A personal dashboard - may include fitness, podcasts, anki, reading, inspirational quotes.",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "Eoin Nugent",
"browserslist": "> 0.25%, not dead",
"repository": {
"type": "git",
"url": "https://github.com/ENuge/project-dedalus.git"
},
"engines": {
"node": "10.x.x"
},
"scripts": {
"dist": "webpack",
"deploy": "npm run prod-server-build && gcloud app deploy --version v1",
"prod-server-build": "babel --delete-dir-on-start --config-file ./.babelrc ./src/ -d build",
"prestart": "npm-run-all dist prod-server-build",
"start": "node build/app/app.js",
"dev": "npm-run-all dist --parallel watch:build watch:server",
"debug": "npm-run-all dist --parallel watch:build watch:server-debug",
"watch:server-debug": "nodemon --inspect ./src/app/app.jsx --exec babel-node",
"watch:build": "webpack --watch",
"watch:server": "nodemon ./src/app/app.jsx --exec babel-node",
"lint": "repo-tools lint",
"pretest": "npm run lint",
"system-test": "repo-tools test app",
"test": "npm run system-test",
"e2e-test": "repo-tools test deploy"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@google-cloud/datastore": "^4.4.0",
"axios": "^0.18.1",
"body-parser": "^1.18.3",
"dateformat": "^3.0.3",
"express": "^4.16.3",
"github-current-user": "^2.5.0",
"normalize": "^0.3.1",
"npm": "^6.12.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"strava-v3": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@google-cloud/nodejs-repo-tools": "^2.3.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"babel-preset-airbnb": "^3.0.1",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow": "^0.2.3",
"nodemon": "^1.18.4",
"nodemon-webpack-plugin": "^4.1.1",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3",
"semistandard": "^12.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "Hello, world!"
}
},
"requiresKeyFile": true,
"requiresProjectId": true
}
}