-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.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
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
98
99
100
101
102
103
{
"name": "project-trinary",
"version": "1.4.0",
"private": true,
"engines": {
"node": "14.x"
},
"description": "",
"main": "server.js",
"dependencies": {
"@apollo/client": "^3.2.7",
"@date-io/moment": "^1.3.13",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.2.10",
"@material-ui/system": "^4.9.14",
"@octokit/rest": "^18.0.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@unicef/material-ui-currency-textfield": "^0.8.6",
"accounting-js": "^1.1.1",
"apollo-server": "^2.18.2",
"apollo-server-express": "^2.18.2",
"aws-sdk": "^2.771.0",
"axios": "^0.21.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"bitcoin-address-validation": "^2.2.1",
"bitcoin-conversion": "^0.4.0",
"body-parser": "^1.19.0",
"concurrently": "^6.2.2",
"connect-wwwhisper": "^0.1.21",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"express": "^4.17.1",
"graphql": "^15.4.0",
"graphql-tools": "^6.2.3",
"moment": "^2.29.1",
"mysql2": "^2.2.5",
"node-sass": "^7.0.1",
"react": "^16.14.0",
"react-datepicker": "^3.3.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.0",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"stripe": "^8.150.0",
"toggl-api": "https://github.com/setlife-network/node-toggl-api.git",
"xmlhttprequest": "^1.8.0"
},
"scripts": {
"ui": "cross-env PORT=6002 react-scripts start",
"ui-v2": "cross-env PORT=6003 react-app-rewired start",
"server": "cross-env PORT=6001 node server",
"dev-server": "cross-env PORT=6001 nodemon server",
"start": "node server",
"build-v1": "BUILD_PATH='./build-v1' PUBLIC_URL=/build-v1 react-scripts build",
"build": "react-app-rewired build && BUILD_PATH='./build-v1' PUBLIC_URL=/build-v1 react-scripts build",
"tests:unit": "react-scripts test",
"tests:e2e:local": "SITE_URL=localhost:6002 testcafe chrome src/tests/e2e/",
"tests:e2e:staging": "SITE_URL=https://trinary-staging.setlife.tech testcafe chrome src/tests/e2e/",
"tests:e2e:staging:args": "SITE_URL=https://trinary-staging.setlife.tech testcafe chrome",
"eject": "react-scripts eject",
"prebuild": "npx sequelize-cli db:migrate"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"jest-watch-typeahead": "^0.6.5",
"postcss": "^8.4.18",
"react-app-rewired": "^2.2.1",
"tailwindcss": "^3.2.1",
"testcafe": "^1.18.6"
}
}