forked from keen/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.3 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
{
"name": "keen-explorer",
"description": "Data Explorer by Keen IO",
"version": "4.0.1",
"license": "MIT",
"bucket-name": "keen-js",
"main": "dist/keen-explorer.umd.js",
"browser": "dist/keen-explorer.umd.js",
"style": "dist/keen-explorer.css",
"scripts": {
"start": "concurrently --kill-others \"NODE_ENV=development webpack-dev-server\" \"npm run postcss-watch\"",
"postcss-watch": "node_modules/postcss-cli/bin/postcss lib/styles/base.css -o test/demo/keen-explorer.css --watch --config postcss.config.js",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"build": "NODE_ENV=production webpack -p && npm run build:bundle && npm run build:css && npm run build:css:min",
"build:bundle": "NODE_ENV=production BUNDLE=1 webpack -p && NODE_ENV=production OPTIMIZE_MINIMIZE=1 BUNDLE=1 webpack -p ",
"build:css": "node_modules/postcss-cli/bin/postcss lib/styles/base.css -o dist/keen-explorer.css --config postcss.config.js",
"build:css:min": "OPTIMIZE_MINIMIZE=1 node_modules/postcss-cli/bin/postcss lib/styles/base.css -o dist/keen-explorer.min.css --config postcss.config.js",
"preversion": "npm run build && npm run test",
"version": "git add .",
"postversion": "git push && git push --tags",
"profile": "webpack --profile --json > stats.json",
"analyze": "webpack-bundle-analyzer stats.json /dist"
},
"dependencies": {
"classnames": "2.1.2",
"flux": "^2.0.3",
"json-stable-stringify": "1.0.0",
"jquery": "^2.1.4",
"keen-analysis": "^2.0.0",
"keen-dataviz": "^2.0.4",
"keymirror": "~0.1.0",
"lodash": "^4.0.0",
"moment": "^2.7.0",
"qs": "2.2.3",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-highlight": "^0.9.0",
"rquery": "^3.1.1",
"string": "^2.0.1"
},
"repository": {
"type": "git",
"url": "[email protected]:keen/explorer.git"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"connect-history-api-fallback": "0.0.5",
"cssnano": "^3.10.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gulp": "^3.9.1",
"gulp-awspublish": "^3.0.1",
"gulp-rename": "^1.2.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.8.0",
"jest": "^22.4.3",
"jest-environment-jsdom-c3": "^2.0.0",
"nock": "^9.2.6",
"postcss": "^6.0.21",
"postcss-cli": "^5.0.0",
"postcss-cssnext": "^2.4.0",
"postcss-import": "^8.0.2",
"postcss-loader": "^2.1.3",
"precss": "^3.1.2",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^15.6.2",
"regenerator-runtime": "^0.11.1",
"run-sequence": "~1.0.1",
"stringify": "~3.0.0",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"xhr-mock": "^2.3.2"
}
}