-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
133 lines (133 loc) · 4.3 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
{
"name": "wunderpong",
"version": "2.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"test:server": "jest -i server",
"predev": "echoascii dev && run-s helper:cleanup-uploads",
"dev": "run-p dev:client dev:server",
"dev:client": "parcel ./client/index.html --no-cache -d __dev__/client",
"dev:server": "nodemon ./server",
"build": "echoascii prod && run-s helper:cleanup-dist helper:cleanup-uploads build:client build:server",
"build:client": "run-s bundle:client",
"build:server": "run-s bundle:server helper:copy-migrations",
"bundle:client": "rimraf dist/client && NODE_ENV=production parcel build ./client/index.html --no-source-maps --no-cache -d dist/client --public-url /",
"bundle:server": "rimraf dist/server && NODE_ENV=production parcel build ./server/index.js --no-source-maps --no-cache -d dist/server -t node",
"deploy": "run-s build helper:commit-files-to-heroku",
"start": "node ./dist/server/index.js",
"helper:cleanup-dist": "rimraf dist",
"helper:cleanup-uploads": "rimraf uploads",
"helper:copy-migrations": "cp -R ./server/migrations ./dist/migrations",
"lint": "eslint server",
"test": "npm run lint && npm run test:server"
},
"nodemonConfig": {
"ignore": [
"client/*",
"dist/*"
]
},
"jest": {
"roots": [
"<rootDir>/server"
],
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js",
"testRegex": "/__tests__/.*\\.(ts|js)$",
"moduleFileExtensions": [
"js"
]
},
"devDependencies": {
"autoprefixer": "^8.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"deploy-heroku": "^0.0.0",
"echoascii": "^1.0.3",
"eslint": "^5.8.0",
"jest": "^23.1.0",
"nodemon": "^1.17.3",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.12.4",
"postcss-apply": "^0.10.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-color-gray": "^4.1.0",
"postcss-color-hex-alpha": "^3.0.0",
"postcss-color-hsl": "^2.0.0",
"postcss-color-hwb": "^3.0.0",
"postcss-color-rgb": "^2.0.0",
"postcss-color-rgba-fallback": "^3.0.0",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^7.0.0",
"postcss-custom-selectors": "^4.0.1",
"postcss-for": "^2.1.1",
"postcss-inject": "^1.0.1",
"postcss-media-minmax": "^3.0.0",
"postcss-modules": "^1.1.0",
"postcss-nesting": "^5.0.0",
"postcss-pseudo-class-any-link": "^4.0.0",
"postcss-pseudoelements": "^5.0.0",
"postcss-reporter": "^5.0.0",
"postcss-selector-matches": "^3.0.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"arpad": "^1.0.2",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"camelcase-keys": "^4.2.0",
"classnames": "^2.2.6",
"copy-text-to-clipboard": "^1.0.4",
"cors": "^2.8.4",
"date-fns": "^1.29.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"inline-style-prefixer": "^4.0.0",
"knex": "^0.95.2",
"lodash.capitalize": "^4.2.1",
"lodash.chunk": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.flatten": "^4.4.0",
"lodash.flattendeep": "^4.4.0",
"lodash.frompairs": "^4.0.1",
"lodash.noop": "^3.0.1",
"lodash.pick": "^4.4.0",
"lodash.reverse": "^4.0.1",
"lodash.set": "^4.3.2",
"lodash.snakecase": "^4.1.1",
"lodash.sortby": "^4.7.0",
"lodash.throttle": "^4.1.1",
"lodash.uniq": "^4.5.0",
"lottie-web": "^5.3.1",
"node-cron": "^2.0.3",
"node-fetch": "^2.1.2",
"pg": "^8.5.1",
"pg-format": "^1.0.4",
"prompt-confirm": "^2.0.4",
"qrcode.react": "^0.8.0",
"raf": "^3.4.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-webcam": "^1.0.4",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"supertest": "^3.3.0",
"tween": "^0.9.0",
"whatwg-fetch": "^2.0.4"
},
"resolutions": {
"@babel/preset-env": "7.13.8",
"parcel-bundler/node-forge": "^0.10.0"
}
}