This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
115 lines (115 loc) · 3.27 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
{
"name": "demo-sso",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.0.2",
"@types/cors": "^2.8.4",
"@types/react-redux": "^6.0.6",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"body-parser": "^1.18.3",
"connected-react-router": "^4.4.1",
"cors": "^2.8.4",
"cred-types-jolocom-demo": "^0.0.1",
"css-loader": "0.28.7",
"express": "^4.16.3",
"file-loader": "0.11.2",
"form-data": "^2.3.2",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"jest": "22.4.2",
"jolocom-lib": "^3.0.0",
"material-ui": "^0.20.2",
"promise": "8.0.1",
"react": "^16.4.2",
"react-bootstrap": "^0.32.3",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"redis": "^2.8.0",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-thunk": "^2.3.0",
"resolve": "1.6.0",
"sha3": "^1.2.2",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"style-loader": "0.19.0",
"ts-jest": "22.0.1",
"ts-loader": "^5.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-react": "^3.2.0",
"url-loader": "^1.1.1"
},
"scripts": {
"start": "yarn run build; yarn run redis:start; yarn run server; yarn run redis:stop",
"redis:start": "redis-server &",
"redis:stop": "redis-cli SHUTDOWN",
"server": "./node_modules/.bin/ts-node -O '{\"module\": \"commonjs\"}' ./server/server.ts",
"build": "webpack",
"test": "node scripts/test.js --env=jsdom"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.1",
"@types/material-ui": "^0.21.5",
"@types/node": "^10.9.2",
"@types/react": "^16.4.12",
"@types/react-bootstrap": "^0.32.13",
"@types/react-dom": "^16.0.7",
"@types/react-router": "^4.0.30",
"@types/react-router-redux": "^5.0.15",
"@types/redis": "^2.8.6",
"@types/socket.io": "^1.4.38",
"@types/socket.io-client": "^1.4.32",
"copy-webpack-plugin": "^4.5.2",
"html-webpack-plugin": "^3.2.0",
"typescript": "^3.0.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.(j|t)s?(x)",
"<rootDir>/src/**/?(*.)(spec|test).(j|t)s?(x)"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.tsx?$": "<rootDir>/config/jest/typescriptTransform.js",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|ts|tsx)$"
],
"moduleFileExtensions": [
"web.ts",
"ts",
"web.tsx",
"tsx",
"web.js",
"js",
"web.jsx",
"jsx",
"json",
"node",
"mjs"
],
"globals": {
"ts-jest": {
"tsConfigFile": "/Users/charly/Documents/Code/WORK/demo-sso/tsconfig.test.json"
}
}
}
}