-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.64 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"scripts": {
"build": "npm run types:sass && TS_NODE_PROJECT=tsconfig.json webpack --env.GIT_SHA=$(git rev-parse HEAD) --env.NODE_ENV=production --config ./config/webpack/webpack.config.ts",
"build:analyze": "npm run types:sass && TS_NODE_PROJECT=tsconfig.json webpack ---env.ANALYZE --env.NODE_ENV=production --config ./config/webpack/webpack.config.ts",
"build:server": "tsc --build ./server && tsc --build ./env",
"clean": "rm -rf dist **/*.scss.d.ts",
"dev:server": "TS_NODE_PROJECT=tsconfig.json webpack-dev-server --env.NODE_ENV=development --config ./config/webpack/webpack.config.ts",
"doc": "typedoc",
"gql": "graphql-codegen --config config/graphql/graphqlgen.yml",
"lint": "eslint --ext .tsx --ext .ts .",
"lint:fix": "npm run lint -- --fix",
"start": "npm run types:sass:watch | npm run dev:server",
"storybook:start": "npm run types:sass:watch | start-storybook -p 6006",
"storybook:build": "npm run types:sass && build-storybook",
"test": "jest --no-coverage",
"test:watch": "jest --watch --no-coverage",
"test:coverage": "jest --coverage",
"test:bundlesize": "bundlesize --config config/bundlesize/config.json",
"test:types": "tsc --noEmit",
"types:sass": "npm run clean && tsm src --camelCase",
"types:sass:watch": "npm run types:sass -- --watch"
},
"devDependencies": {
"@apollo/client": "^3.3.7",
"@babel/core": "7.8.4",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/typescript": "^1.20.0",
"@graphql-codegen/typescript-graphql-files-modules": "^1.18.1",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@storybook/addon-actions": "5.3.9",
"@storybook/addon-links": "5.3.9",
"@storybook/addons": "5.3.9",
"@storybook/react": "5.3.9",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^5.0.0",
"@types/classnames": "^2.2.11",
"@types/copy-webpack-plugin": "5.0.0",
"@types/dotenv": "^8.2.0",
"@types/dotenv-webpack": "^5.0.0",
"@types/express": "^4.17.9",
"@types/file-saver": "^2.0.1",
"@types/html-webpack-plugin": "3.2.2",
"@types/jest": "25.1.1",
"@types/mixpanel-browser": "^2.35.6",
"@types/morgan": "^1.9.2",
"@types/node": "13.7.0",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-router-dom": "^5.1.6",
"@types/terser-webpack-plugin": "3.0.0",
"@types/uuid": "^8.3.0",
"@types/webpack": "^4.41.25",
"@types/webpack-bundle-analyzer": "2.13.3",
"@types/webpack-dev-server": "3.10.0",
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/parser": "2.18.0",
"babel-loader": "8.0.6",
"bundlesize": "^0.18.1",
"classnames": "^2.2.6",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.4.2",
"dotenv-webpack": "^6.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "2.3.0",
"file-saver": "^2.0.5",
"formik": "^2.2.6",
"graphql": "^15.4.0",
"html-webpack-plugin": "3.2.0",
"husky": "4.2.1",
"identity-obj-proxy": "3.0.0",
"jest": "^25.1.0",
"jest-watch-typeahead": "^0.5.0",
"mixpanel-browser": "^2.41.0",
"node-sass": "4.13.1",
"normalize.css": "8.0.1",
"nyc": "15.0.0",
"prettier": "1.19.1",
"react-router-dom": "^5.2.0",
"rxjs": "^6.6.3",
"rxjs-marbles": "^6.0.1",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"subscriptions-transport-ws": "^0.9.18",
"terser-webpack-plugin": "3.0.6",
"ts-node": "8.6.2",
"typed-scss-modules": "1.1.0",
"typedoc": "0.16.9",
"typescript": "3.7.5",
"uuid": "^8.3.2",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.2"
},
"dependencies": {
"@auth0/auth0-react": "^1.2.0",
"@sentry/browser": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"react": "16.12.0",
"react-dom": "16.12.0"
},
"name": "app",
"version": "0.0.0",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}