-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
179 lines (179 loc) · 7.19 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "atoll",
"version": "0.63.1",
"author": {
"name": "Kevin Berry",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=16.14.2 <17.0.0",
"npm": ">=8.5.0"
},
"scripts": {
"analyze": "npm run build:with-stats && npm run start:analyzer",
"build": "npm run build-only && npm run build-deploy",
"build-only": "echo Node Version && node --version && npx --no-install cross-env NODE_ENV=production node scripts/build.js",
"build-deploy": "node ./scripts/build-deploy.js",
"build:dev": "npm run build-only:dev && npm run build-deploy",
"build-only:dev": "npx --no-install cross-env NODE_ENV=development node scripts/build.js",
"depgraph": "npm run build:depgraph && npx --no-install opener dependency-graph.svg",
"build:depgraph": "depcruise -c .dependency-cruiser.js --output-type dot src | dot -T svg > dependency-graph.svg",
"clean": "npx rimraf --no-install build",
"clean:transpiled": "npx rimraf --no-install build/transpiled",
"i18n:scan": "npx --no-install cross-env NODE_ENV=i18n npm run transpile && i18next-scanner './build/transpiled/**/*.js' && npm run clean:transpiled",
"lint": "concurrently \"npm run lint:ts\" \"npm run lint:css\"",
"lint:deps": "depcruise -c .dependency-cruiser.js src/",
"start:client": "npx --no-install cross-env NODE_ENV=development node scripts/start.js --client-only",
"prestart": "npm run sync-if-linked",
"start": "npm run check:prereqs && npm run start-only",
"start-only": "npx --no-install cross-env NODE_ENV=development node scripts/start.js",
"start:prod": "npx --no-install cross-env NODE_ENV=production node scripts/start.js",
"sync-if-linked": "node scripts/sync-if-linked.js",
"test": "npm run test:unit",
"test:watch": "node scripts/test.js --env=jsdom --coverage",
"test:unit": "npm run test:tsc && npm run test:jest",
"test:tsc": "tsc --noEmit --project tsconfig.json",
"test:jest": "npx --no-install cross-env CI=true node scripts/test.js --env=jsdom --coverage",
"test:update": "npx --no-install cross-env CI=true npm test --updateSnapshot",
"test:report": "npx --no-install opener ./coverage/lcov-report/index.html",
"start:analyzer": "webpack-bundle-analyzer build/client/static/bundle-stats.json",
"transpile": "babel -d build/transpiled ./src --extensions .es6,.js,.es,.jsx,.mjs,.ts,.tsx --ignore **/*.d.ts",
"lint:css": "stylelint src/**/*.css",
"lint:ts": "eslint src/**/*.{js,jsx,ts,tsx}",
"lint:fix-ts": "eslint src/**/*.{js,jsx,ts,tsx} --fix",
"build:with-stats": "npx --no-install cross-env NODE_ENV=production webpack --config config/webpack.config.js/client.prod.js --json > build/client/static/bundle-stats.json",
"local-publish:shared": "cd .. && cd atoll-shared && npm run local-publish && cd ..",
"local-publish-quick:shared": "cd .. && cd atoll-shared && npm run local-publish-quick && cd ..",
"local-link:shared": "npx --no-install yalc add @atoll/shared",
"sync": "npm run local-publish:shared && npm run local-link:shared",
"sync-quick": "npm run local-publish-quick:shared && npm run local-link:shared",
"start:no-sync": "npm run start-only",
"pull:shared": "cd .. && cd atoll-shared && npm run push && cd ..",
"start:client-only": "npm run build:dev && npm run start:client",
"output:now": "node -e \"console.log(JSON.stringify(new Date()))\"",
"check": "node ./scripts/check-package-json.js",
"open:deploy": "node ./scripts/open-deploy.js",
"presetup": "npm run check:prereqs",
"setup": "ts-node ./scripts/setup.ts",
"check:prereqs": "ts-node ./scripts/check-prereqs.ts"
},
"dependencies": {
"@atoll/shared": "0.63.1",
"@flopflip/memory-adapter": "1.6.0",
"@flopflip/react-broadcast": "10.1.11",
"axios": "0.26.1",
"body-parser": "1.20.0",
"chalk": "4.1.2",
"connected-react-router": "6.8.0",
"decimal.js-light": "2.5.1",
"dotenv": "16.0.0",
"express": "4.17.3",
"express-manifest-helpers": "0.6.0",
"express-ws": "5.0.2",
"find-package-json": "1.2.0",
"history": "4.10.1",
"http-status-codes": "2.2.0",
"i18next": "19.0.0",
"immer": "9.0.6",
"jsonwebtoken": "8.5.1",
"pg": "8.7.3",
"pg-hstore": "2.3.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "5.2.1",
"react-i18next": "11.2.1",
"react-markdown": "5.0.3",
"react-redux": "7.2.0",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.8",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"sequelize": "6.23.0",
"text-encoding-polyfill": "0.6.7",
"url-parse": "1.5.10",
"uuid": "8.3.2",
"websocket": "1.0.34",
"ws": "8.5.0"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/generator": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"@babel/preset-typescript": "7.10.1",
"@csstools/normalize.css": "10.1.0",
"@svgr/webpack": "6.3.1",
"@types/cors": "2.8.6",
"@types/express": "4.17.2",
"@types/express-ws": "3.0.0",
"@types/history": "4.7.5",
"@types/jest": "25.2.1",
"@types/jsonwebtoken": "8.3.9",
"@types/node": "13.13.4",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.5",
"@types/react-helmet": "5.0.15",
"@types/react-redux": "7.1.7",
"@types/react-router-dom": "5.1.5",
"@types/uuid": "7.0.0",
"@types/webpack-env": "1.15.1",
"@types/websocket": "1.0.0",
"@types/ws": "7.2.2",
"autoprefixer": "9.7.6",
"babel-loader": "8.1.0",
"babel-plugin-named-asset-import": "0.3.7",
"babel-preset-react-app": "9.1.2",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"concurrently": "5.1.0",
"copy-webpack-plugin": "5.1.1",
"core-js": "3.6.4",
"cpx": "1.5.0",
"cross-env": "7.0.2",
"css-hot-loader": "1.4.4",
"css-loader": "3.4.2",
"dependency-cruiser": "9.26.1",
"eslint": "6.8.0",
"file-loader": "5.1.0",
"fs-extra": "9.0.0",
"html-webpack-plugin": "3.2.0",
"i18next-scanner": "2.10.2",
"jest": "25.5.3",
"jest-cli": "25.5.3",
"launchdarkly-js-client-sdk": "2.17.0",
"mini-css-extract-plugin": "0.9.0",
"nodemon": "2.0.2",
"postcss-assets": "5.0.0",
"postcss-custom-properties": "9.1.1",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-nested": "4.2.1",
"prettier": "2.5.1",
"react-dev-utils": "12.0.1",
"redux-mock-store": "1.5.4",
"regenerator-runtime": "0.13.3",
"semver": "7.3.4",
"style-loader": "1.1.3",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.1",
"stylelint-order": "4.0.0",
"stylelint-prettier": "1.1.2",
"terser-webpack-plugin": "2.3.7",
"ts-node": "9.1.1",
"typescript": "4.2.4",
"url-loader": "3.0.0",
"webpack": "4.41.6",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.11",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.2",
"webpack-manifest-plugin": "2.2.0",
"webpack-node-externals": "1.7.2",
"write-file-webpack-plugin": "4.5.1",
"yalc": "1.0.0-pre.53"
}
}