-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "sodium-frp-react-demo",
"version": "0.3.2",
"description": "Examples of how to use the sodium-frp-react package",
"main": "src/index.tsx",
"scripts": {
"tsc": "tsc",
"build": "webpack -p --progress --colors",
"start": "webpack-dev-server --debug --devtool cheap-module-source-map --output-pathinfo --history-api-fallback --hot --inline --progress --colors --port 3000 --open http://localhost:3000",
"test": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ziriax/sodium-frp-react-demo.git"
},
"keywords": [
"sodium-frp-react",
"frp",
"sodium",
"sodiumjs",
"react",
"reactive",
"functional",
"redux",
"flux"
],
"author": "Peter Verswyvelen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ziriax/sodium-frp-react-demo/issues"
},
"homepage": "https://github.com/Ziriax/sodium-frp-react-demo#readme",
"dependencies": {
"hoek": "^4.2.1",
"lodash": "^4.17.5",
"react": "^16.4.2",
"react-display-name": "^0.2.4",
"react-dom": "^16.4.2",
"sodium-frp-react": "^0.3.0",
"sodiumjs": "^1.1.3",
"sshpk": "^1.13.2"
},
"devDependencies": {
"@types/jest": "^21.1.10",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"@types/react-hot-loader": "^3.0.6",
"@types/webpack-env": "^1.13.6",
"awesome-typescript-loader": "^3.5.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"react-hot-loader": "^3.1.3",
"ts-jest": "^21.2.4",
"typescript": "^2.9.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.11.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}