This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.01 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
{
"name": "autokaizen",
"version": "0.1.0",
"description": "Automatic kaizen",
"main": "index.js",
"author": "Nathan Gaberel <nathang@theodo.co.uk>",
"license": "MIT",
"homepage": "https://kaizen.gnab.fr",
"repository": {
"type": "git",
"url": "git+https://github.com/n6g7/autokaizen.git"
},
"scripts": {
"build": "webpack -p --mode=production",
"deploy": "yarn build && firebase deploy",
"deploy:ci": "yarn deploy --token $FIREBASE_TOKEN --project $FIREBASE_PROJECT",
"dev": "webpack-dev-server --mode=development",
"test": "prettier -l \"src/**/*.js\""
},
"dependencies": {
"@firebase/app-types": "^0.4.0",
"@vx/axis": "^0.0.189",
"@vx/group": "^0.0.183",
"@vx/scale": "^0.0.189",
"connected-react-router": "^6.4.0",
"d3": "^5.9.2",
"firebase": "^5.11.1",
"history": "^4.9.0",
"lodash": "^4.17.11",
"luxon": "^1.13.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-saga": "^1.0.2",
"redux-saga-firebase": "^0.15.0",
"reselect": "^4.0.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"dotenv-webpack": "^1.7.0",
"prettier": "^1.17.0",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"standard": {
"ignore": [
"dist"
],
"parser": "babel-eslint"
}
}