-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.47 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
{
"name": "elastic-composer",
"version": "4.8.1",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"browserslist": [
"last 1 Chrome version"
],
"scripts": {
"dev": "parcel dev/index.html --no-cache",
"build": "npm run clean && rollup -c",
"clean": "rimraf coverage dist tmp",
"watch": "rollup -cw",
"prettier": "./node_modules/.bin/prettier \"src/**/*\" --write",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --runInBand",
"test:clear-cache": "jest --clearCache",
"test:watch": "npm run test -- --watchAll --runInBand",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit",
"dep-check": "snpkg-dependency-check",
"package-version-validation": "snpkg-package-version-validation package-version-validation",
"tag-version-validation": "snpkg-package-version-validation tag-version-validation"
},
"author": "Ethan Hathaway <erhathaway@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/social-native/elastic-composer.git"
},
"bugs": {
"url": "https://github.com/social-native/elastic-composer/issues"
},
"homepage": "https://github.com/social-native/elastic-composer#readme",
"dependencies": {
"await-timeout": "^1.1.1",
"axios": "^0.19.1",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"mobx": "^5.14.2",
"mobx-react": "^6.1.4",
"query-params-data": "^0.2.2",
"query-string": "^6.11.1"
},
"peerDependencies": {
"await-timeout": "^1.1.1",
"axios": "^0.19.1",
"mobx": "^5.14.2",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"query-string": "^6.11.1",
"query-params-data": "^0.2.2"
},
"devDependencies": {
"@rollup/plugin-json": "^4.0.2",
"@social-native/snpkg-client-graphql-client": "^0.2.1",
"@social-native/snpkg-dependency-check": "^0.1.0",
"@social-native/snpkg-package-version-validation": "^3.1.0",
"@types/await-timeout": "^0.3.1",
"@types/jest": "^24.0.13",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.debounce": "^4.0.6",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^4.1.20",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-runtime": "^6.26.0",
"graphql-tag": "^2.10.3",
"jest": "^24.5.0",
"nodemon": "^1.18.10",
"parcel-bundler": "^1.12.4",
"prettier": "^1.16.4",
"rc-slider": "^9.1.0",
"react": "^16.12.0",
"react-dom": "^16.11.0",
"react-dropdown-now": "^1.0.3",
"react-super-responsive-table": "^5.1.1",
"rimraf": "^2.6.3",
"rollup": "^1.2.2",
"rollup-plugin-typescript2": "^0.21.1",
"styled-components": "^4.4.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-immutable": "^5.5.2",
"typescript": "^3.8.3",
"victory": "^34.0.0",
"wait-for-expect": "^3.0.2"
}
}