-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (80 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (80 loc) · 2.82 KB
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
{
"name": "node-react-starter",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"boot-prod": "npm run build-prod && npm run start-prod",
"build-prod": "npm run build-client-prod && npm run build-server-prod",
"build-client-prod": "NODE_ENV=production webpack --bail --config=\"webpack.clients.js\"",
"build-server-prod": "NODE_ENV=production webpack --bail --config=\"webpack.server.js\"",
"start-prod": "NODE_ENV=production node ./dist/server.bundle.js",
"boot-stg": "npm run build-stg && npm run start-stg",
"build-stg": "npm run build-client-stg && npm run build-server-stg",
"build-client-stg": "NODE_ENV=staging webpack --bail --config=\"webpack.clients.js\"",
"build-server-stg": "NODE_ENV=staging webpack --bail --config=\"webpack.server.js\"",
"start-stg": "NODE_ENV=staging node ./dist/server.bundle.js",
"boot-dev": "npm run build-dev && npm run start-dev",
"watch-dev": "npm run build-dev && npm run start-dev-watch",
"build-dev": "npm run build-server-dev && npm run build-client-dev",
"start-dev": "NODE_ENV=development node ./dist/server.bundle.js",
"start-dev-watch": "WATCH_CLIENT=1 NODE_ENV=development node ./dist/server.bundle.js",
"build-client-dev": "NODE_ENV=development webpack --config=\"webpack.clients.js\"",
"build-server-dev": "NODE_ENV=development webpack --config=\"webpack.server.js\"",
"start-watch": "NODE_ENV=development webpack --watch --config=\"webpack.clients.js\"",
"test": "jest --coverage",
"jest-update-snapshots": "jest -u"
},
"author": "Ian Reid",
"license": "ISC",
"dependencies": {
"@anyuzer/starter-ux-lib": "^0.0.6",
"@babel/polyfill": "7.12.1",
"@koa/cors": "^3.3.0",
"arc-lib": "^6.0.2",
"chalk": "^4.1.2",
"cross-fetch": "3.1.5",
"koa": "2.13.4",
"koa-basic-auth": "4.0.0",
"koa-bodyparser": "^4.3.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-lazyload": "3.2.0",
"serialize-javascript": "6.0.0",
"styled-components": "5.3.5",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"babel-loader": "8.2.4",
"babel-plugin-styled-components": "2.0.6",
"babel-preset-minify": "^0.5.1",
"file-loader": "6.2.0",
"jest": "27.5.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"webpack": "5.70.0",
"webpack-cli": "4.9.2",
"webpack-node-externals": "3.0.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coveragePathIgnorePatterns": [
"/Adapters/",
"index.js",
"styles.js"
],
"testPathIgnorePatterns": [
"/__mocks__/"
]
}
}