forked from algolia/angular-instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.29 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
{
"name": "angular-instantsearch",
"version": "1.0.0-beta.7",
"description": "Lightning-fast search for Angular apps, by Algolia.",
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"license": "MIT",
"scripts": {
"build": "./scripts/build.sh",
"lint": "tslint src/**/*.ts examples/**/*.ts",
"dev": "webpack-dev-server --config webpack.demo.js --inline --progress",
"test": "jest",
"test:ci": "yarn lint && jest --runInBand && yarn build",
"test:watch": "jest --watch",
"examples:ecommerce": "./scripts/run-example.sh e-commerce",
"examples:ecommerce:build": "./scripts/build-example.sh e-commerce",
"examples:router": "./scripts/run-example.sh angular-router",
"examples:router:build": "./scripts/build-example.sh angular-router",
"release": "./scripts/release.sh",
"netlify": "./scripts/netlify.sh",
"doc:publish": "git subtree push --prefix doc origin gitbook"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/setup-jest.ts",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/",
"<rootDir>/examples/"
],
"transform": {
"^.+\\.(ts|html)$": "<rootDir>/node_modules/jest-preset-angular/preprocessor.js",
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!instantsearch|lodash-es)"
],
"globals": {
"ts-jest": {
"tsConfigFile": "./tsconfig.spec.json"
},
"__TRANSFORM_HTML__": true
}
},
"dependencies": {
"@angular/common": "^4.4.5",
"@angular/core": "^4.4.5",
"algoliasearch": "^3.24.7",
"algoliasearch-helper": "^2.23.0",
"instantsearch.css": "^2.0.0",
"instantsearch.js": "^2.3.1",
"lodash-es": "^4.17.4",
"nouislider": "^10.0.0",
"querystring-es3": "^0.2.1"
},
"devDependencies": {
"@angular/compiler": "^4.4.5",
"@angular/compiler-cli": "^4.4.5",
"@angular/platform-browser": "^4.4.5",
"@angular/platform-browser-dynamic": "^4.4.5",
"@ngtools/webpack": "^1.7.4",
"@types/jest": "^21.1.5",
"@types/lodash-es": "^4.17.0",
"@types/node": "^8.0.50",
"@types/nouislider": "^9.0.3",
"angular2-template-loader": "^0.6.2",
"babel-cli": "^6.0.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.0.0",
"conventional-changelog-cli": "^1.3.5",
"core-js": "^2.5.1",
"css-loader": "^0.28.7",
"dev-novel": "^0.0.6",
"eslint": "^4.10.0",
"eslint-config-algolia": "^12.0.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"jest-preset-angular": "^4.0.1",
"prettier": "^1.8.1",
"raw-loader": "^0.5.1",
"rollup": "^0.51.2",
"rollup-plugin-replace": "^2.0.0",
"rxjs": "^5.4.3",
"style-loader": "^0.19.0",
"ts-loader": "^2.0.0",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.3.0",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.5.3",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.2",
"zone.js": "^0.8.18"
}
}