-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.64 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
{
"name": "falcor-connect",
"version": "0.1.0",
"description": "react-falcor bindings",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"dev": "webpack-dev-server --mode development --config ./examples/webpack.js --progress",
"build:examples": "webpack --mode production --config ./examples/webpack.js --progress",
"build": "rm -rf ./dist && tsc ./src/index.ts -t es5 -d --declarationMap --strict --removeComments --outDir ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "npm run lint && npm run build"
},
"author": "James Conkling <james.lane.conkling@gmail.com> jameslaneconkling.github.io",
"license": "ISC",
"dependencies": {
"ramda": "^0.27.0"
},
"peerDependencies": {
"falcor": "^2.1.0",
"react": "^16.8.0",
"rxjs": "^6.5.0"
},
"devDependencies": {
"@types/falcor": "^2.0.0",
"@types/falcor-router": "^0.8.0",
"@types/ramda": "^0.27.6",
"@types/react-dom": "^16.9.1",
"@types/react-router-dom": "^5.1.0",
"@types/recompose": "^0.30.7",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.3.1",
"falcor": "^2.1.0",
"falcor-router": "^0.8.3",
"html-webpack-plugin": "^3.2.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"recompose": "^0.30.0",
"rxjs": "^6.5.3",
"ts-loader": "^6.2.0",
"ts-toolbelt": "^6.13.34",
"typescript": "^3.9.5",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.11.0"
}
}