This repository has been archived by the owner on Apr 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 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
{
"name": "react-search-example",
"version": "0.2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/springload/react-search-example"
},
"engines": {
"node": "4.2.2"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"babelify": "^6.0.2",
"browser-sync": "^2.8.0",
"browserify": "^12.0.1",
"browserify-incremental": "^3.0.0",
"chai": "^3.2.0",
"electron-packager": "^5.2.1",
"electron-prebuilt": "^0.36.7",
"eslint": "^1.3.1",
"eslint-config-airbnb": "^3.0.0",
"eslint-plugin-react": "^3.14.0",
"express": "^4.13.0",
"gulp": "^3.9.0",
"gulp-inject": "^3.0.0",
"gulp-parker": "^0.1.0",
"gulp-pleeease": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4",
"gulp-sass-lint": "^1.1.0",
"gulp-svgmin": "^1.1.2",
"gulp-svgstore": "^5.0.1",
"gulp-uglify": "^1.4.0",
"gulp-util": "^3.0.4",
"hyperlink": "^2.3.0",
"iconv": "^2.1.11",
"isparta": "^3.0.4",
"mocha": "^2.3.0",
"sass-lint": "^1.4.0",
"sinon": "^1.17.0",
"sw-precache": "^2.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"d3": "^3.5.14",
"electron-debug": "^0.5.1",
"jquery": "^2.2.0",
"lunr": "^0.6.0",
"normalize.css": "^3.0.3",
"react": "^0.14.7",
"react-autosuggest": "^3.4.0",
"react-dom": "^0.14.7",
"react-modal": "^0.6.1",
"react-svg-icon": "^0.2.0",
"springload-analytics.js": "^2.0.0"
},
"scripts": {
"start": "npm run watch -s",
"linter:js": "eslint",
"linter:sass": "sass-lint -v",
"lint:js": "npm run linter:js -s -- .",
"lint:sass": "npm run linter:sass -s",
"lint": "npm run lint:js -s && npm run lint:sass -s",
"test": "npm run test:unit -s",
"test:unit": "mocha --compilers js:babel/register core/static_src/js/tests",
"test:unit:watch": "mocha --watch --compilers js:babel/register core/static_src/js/tests",
"test:unit:coverage": "babel-node $(npm bin)/isparta cover node_modules/mocha/bin/_mocha -- core/static_src/js/tests",
"build": "NODE_ENV=development gulp build",
"dist": "NODE_ENV=production gulp build",
"css": "gulp css",
"js": "gulp js",
"svg": "gulp svg",
"watch": "gulp watch",
"start:electron": "electron .",
"build:electron": "npm run dist && electron-packager . 'Electron Data' --out=dist --ignore='(dist|node_modules|gulp)/' --prune --asar --all --version=0.36.7 --icon raw/data-search-icon --overwrite"
}
}