-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.39 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
{
"name": "react-lambda",
"version": "0.4.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.2",
"@fortawesome/fontawesome-free": "^5.8.2",
"@microsoft/microsoft-graph-client": "^2.0.0",
"@microsoft/microsoft-graph-types": "^1.12.0",
"@swyx/hooks": "^0.0.3",
"@types/dotenv": "^6.1.1",
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.144",
"@types/node": "^10.14.21",
"@types/node-fetch": "^2.5.2",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/react-router-dom": "^4.3.4",
"@types/reactstrap": "^8.0.3",
"apollo-boost": "^0.4.4",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-datasource-rest": "^0.6.5",
"apollo-link-context": "^1.0.19",
"apollo-link-http": "^1.5.16",
"apollo-server-lambda": "^2.9.6",
"bootstrap": "^4.3.1",
"encoding": "^0.1.12",
"graphql": "^14.5.8",
"jsonexport": "^2.4.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"msal": "^1.2.1",
"node-fetch": "^2.3.0",
"react": "^16.10.2",
"react-aad-msal": "^2.3.3",
"react-dom": "^16.10.2",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.3.1",
"reactstrap": "^8.0.0",
"tachyons": "^4.11.1",
"tachyons-components": "^1.0.1",
"typescript": "~3.7.2"
},
"scripts": {
"start": "run-p start:**",
"start:app": "react-scripts start",
"start:lambda": "NODE_ENV=development netlify-lambda serve src/lambda",
"build": "run-p build:**",
"build:app": "react-scripts build",
"build:lambda": "netlify-lambda build src/lambda",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@storybook/addon-actions": "^5.3.9",
"@storybook/addon-links": "^5.3.9",
"@storybook/addons": "^5.3.9",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.3.9",
"@types/aws-lambda": "^8.10.33",
"dotenv": "^8.1.0",
"http-proxy-middleware": "^0.19.0",
"netlify-lambda": "^1.6.3",
"npm-run-all": "^4.1.5"
}
}