-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.51 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
{
"name": "chainable-components",
"version": "1.7.0",
"description": "",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": {
"name": "Paul Gray",
"email": "[email protected]",
"url": "https://paulgray.net/"
},
"scripts": {
"lint": "tslint --project tsconfig-build.json",
"lint-fix": "tslint --project tsconfig-build.json --fix",
"docs:gitbook": "gitbook build ./ docs",
"docs:typedoc": "typedoc --module commonjs --out docs/typedoc/ src/",
"build": "npm-run-all clean build:ts build:dist",
"build:ts": "tsc -p tsconfig-build.json",
"build:dist": "webpack --config webpack/bundle.ts",
"clean": "rm -rf lib/",
"start": "webpack-dev-server --config webpack/hot.ts",
"test": "npm-run-all build test:lint test:unit",
"test:circle": "npm-run-all build test:lint test:unit:circle",
"test:lint": "tslint --project tsconfig-build.json",
"test:unit": "mocha --opts test/mocha.opts 'test/*.ts'",
"test:unit:circle": "mocha --opts test/mocha.opts --reporter mocha-junit-reporter 'test/*.ts'",
"version": "git add -A docs/"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/html-webpack-plugin": "^2.30.3",
"@types/mocha": "^2.2.43",
"@types/ramda": "^0.25.36",
"@types/react": "^16.0.10",
"@types/react-dom": "^16.0.1",
"@types/react-hot-loader": "^3.0.4",
"@types/react-router": "^4.0.24",
"@types/recompose": "^0.26.4",
"@types/webpack": "^4.4.0",
"@types/webpack-env": "^1.13.6",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"file-loader": "^1.1.5",
"formik": "^0.11.11",
"history": "^4.7.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"less": "^3.0.0-alpha.3",
"less-loader": "^4.0.5",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"npm-run-all": "^4.1.1",
"ramda": "^0.25.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "3.0.0",
"react-router": "^4.2.0",
"recompose": "^0.28.2",
"source-map-loader": "^0.2.2",
"style-loader": "^0.19.0",
"ts-loader": "^4.0.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typedoc": "^0.11.1",
"typescript": "^3.4.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"fp-ts": "^1.15.0",
"fp-ts-contrib": "^0.0.2"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"keywords": []
}