This repository has been archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.37 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
{
"name": "@grd/overwolf-boilerplate",
"version": "0.0.1",
"access": "public",
"ava": {
"failFast": true,
"verbose": true,
"files": [
"test/*.test.js",
"test/**/*.test.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"dependencies": {
"async-lock": "1.2.2",
"axios": "0.19.0",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"delay": "4.3.0",
"easy-peasy": "3.2.6",
"express": "4.17.1",
"express-static-gzip": "2.0.5",
"faker": "4.1.0",
"integer.flow": "0.1.1",
"ramda": "0.26.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"safe-stable-stringify": "1.1.0",
"socket.io": "2.3.0",
"socket.io-client": "2.3.0",
"styled-components": "4.4.1",
"use-force-update": "1.0.7"
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/core": "7.7.7",
"@babel/node": "7.7.7",
"@babel/plugin-proposal-optional-chaining": "7.7.5",
"@babel/preset-env": "7.7.7",
"@babel/preset-flow": "7.7.4",
"@babel/preset-react": "7.7.4",
"arraybuffer-loader": "1.0.8",
"ava": "2.4.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"babel-plugin-inline-replace-variables": "1.3.1",
"babel-plugin-macros": "2.8.0",
"babel-plugin-root-import": "6.4.1",
"babel-plugin-styled-components": "1.10.6",
"babel-plugin-transform-line": "0.8.0",
"babylon": "6.18.0",
"base64-inline-loader": "1.1.1",
"bestzip": "2.1.5",
"check-dependencies": "1.1.0",
"core-js": "3.6.1",
"cross-env": "6.0.3",
"eslint": "6.8.0",
"eslint-plugin-flowtype": "4.5.3",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prefer-arrow": "1.1.7",
"eslint-plugin-ramda": "3.0.0-beta.1",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "2.3.0",
"eslint-plugin-sonarjs": "0.5.0",
"extract-zip": "1.6.7",
"fixpack": "2.3.1",
"flow-bin": "0.114.0",
"flow-typed": "2.6.2",
"glob": "7.1.6",
"import-all.macro": "2.0.3",
"import-sort-cli": "6.0.0",
"import-sort-parser-babylon": "6.0.0",
"import-sort-style-alexandria": "2.0.1",
"nodemon": "2.0.2",
"npm-check-updates": "4.0.1",
"null-loader": "3.0.0",
"pm2": "4.2.1",
"preval.macro": "4.0.0",
"regenerator-runtime": "0.13.3",
"semver": "7.1.1",
"stylelint": "12.0.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-standard": "19.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.9.0",
"terser-webpack-plugin": "2.3.1",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
},
"files": [
"public",
"lib"
],
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "alexandria"
}
},
"manifestVersion": "0.0.1",
"repository": "GRDigital/overwolf-boilerplate",
"scripts": {
"import-sort": "cross-env NODE_ENV=server BABEL_DISABLE_CACHE=1 import-sort --write src/**/*.{js,jsx}",
"postinstall": "rm -rf node_modules/**/.babelrc && rm -rf node_modules/.cache && node create-configs",
"script": "cross-env NODE_ENV=server BABEL_DISABLE_CACHE=1 babel-node src/scripts",
"test": "cross-env NODE_ENV=test ava",
"tool": "node src/tools"
}
}