-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.54 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
{
"name": "patronage20-js",
"version": "0.0.1",
"description": "The JavaScript app for patronage 2020 :)",
"main": "index.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.47",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.5.0",
"axios": "^0.19.2",
"concurrently": "^5.2.0",
"fastify": "^2.13.0",
"fastify-cookie": "^3.6.0",
"fastify-env": "^1.0.1",
"fastify-mongodb": "^2.0.0",
"fastify-swagger": "^2.5.0",
"i18next": "^19.4.1",
"mocked-env": "^1.3.2",
"mongo-mock": "^4.0.0",
"notistack": "^0.9.9",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.3.4",
"react-particles-js": "^2.7.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-swipeable-views": "^0.13.9",
"react-use": "^13.27.0",
"redux": "^4.0.5",
"redux-react-hook": "^4.0.1",
"redux-saga": "^1.1.3",
"redux-saga-testing": "^2.0.0",
"serve-static": "^1.14.1",
"swagger-parser": "^10.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@stoplight/prism-cli": "^3.3.0",
"axios-mock-adapter": "^1.18.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"file-loader": "^5.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"mocked-env": "^1.3.2",
"nodemon": "^2.0.2",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4",
"standard": "^14.3.3",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"start": "node .",
"start:watch": "nodemon .",
"start:local": "npm run build:frontend && npm run start",
"start:local:mock": "prism mock -p 3001 http://localhost:3000/.well-known/documentation/json",
"start:local:mock:watch": "nodemon --exec 'npm run start:local:mock'",
"test": "npm run test:server",
"test:server": "jest tests-server/",
"test:db": "jest plugins/db",
"test:frontend": "jest frontend/",
"test:frontend:watch": "jest --watch frontend/",
"start:frontend:dev": "webpack-dev-server --open --mode development",
"build": "npm run build:frontend",
"build:frontend": "webpack --mode production",
"build:frontend:dev": "webpack --mode development --watch --progress",
"standard": "standard --fix",
"start:gateway:mock": "node gateway-mock/index.js && prism mock -h 0.0.0.0 -p 3001 gateway-mock/docs/gateway/openapi.json",
"start:docker:mock": "concurrently --kill-others \"npm run start:watch\" \"npm run start:gateway:mock\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/intive/patronage20-js.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/intive/patronage20-js/issues"
},
"homepage": "https://github.com/intive/patronage20-js#readme",
"jest": {
"moduleNameMapper": {
"^@constants(.*)$": "<rootDir>/frontend/src/common/constants$1",
"^@data(.*)$": "<rootDir>/frontend/src/data$1",
"^@assets(.*)$": "<rootDir>/fileTransformer.js",
"^@components(.*)$": "<rootDir>/frontend/src/components$1"
}
},
"standard": {
"env": [
"jest"
]
}
}