-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.27 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
{
"name": "polymer-3-starter-project",
"version": "0.0.1",
"description": "A starter project for polymer/redux with immutable",
"keywords": [
"webpack",
"saga",
"redux",
"redux-Saga",
"polymer",
"immutable",
"storybook",
"eslint"
],
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0-beta.51",
"@storybook/addon-a11y": "^4.1.11",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-notes": "^4.1.11",
"@storybook/addon-storysource": "^4.1.11",
"@storybook/cli": "4.1.11",
"@storybook/html": "^4.1.11",
"@zakkudo/jsdoc-immutable-plugin": "^0.0.6",
"@zakkudo/jsdoc-native-plugin": "^0.0.3",
"@zakkudo/jsdoc-polymer-plugin": "^0.0.3",
"@zakkudo/jsdoc-redux-plugin": "0.0.8",
"@zakkudo/translate-webpack-plugin": "^0.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-undefined-to-void": "^6.9.4",
"babel-plugin-webpack-alias": "^2.1.2",
"base-href-webpack-plugin": "^2.0.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-polymer": "^0.2.1",
"extract-loader": "^3.1.0",
"file-loader": "^3.0.1",
"generate-json-webpack-plugin": "^0.3.1",
"glob": "^7.1.2",
"html-webpack-include-assets-plugin": "^1.0.7",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.1.0",
"jsdoc": "^3.5.5",
"jsdoc-webpack4-plugin": "^0.0.2",
"json5": "^2.1.0",
"json5-loader": "^1.0.1",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-jasmine": "^2.0.1",
"karma-json-result-reporter": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-watch": "^0.6.0",
"null-loader": "^0.1.1",
"open-browser-webpack-plugin": "^0.0.5",
"source-map-loader": "^0.2.3",
"storybook-addon-jest": "^0.0.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"write-file-webpack-plugin": "^4.3.2"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"@polymer/app-route": "^3.0.0-pre.21",
"@polymer/polymer": "^3.0.2",
"@webcomponents/webcomponentsjs": "^2.2.4",
"@zakkudo/actions": "^1.1.0",
"@zakkudo/translator": "^0.2.1",
"deep-equal": "^1.0.1",
"immutable": "^4.0.0-rc.12",
"polymer-redux": "^1.0.5",
"redux": "^4.0.0",
"redux-saga": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.1.1"
},
"scripts": {
"start": "scripts/start.sh",
"build": "scripts/build.sh",
"test": "scripts/test.sh",
"continuous": "scripts/continuous.sh",
"cover": "scripts/cover.sh",
"document": "scripts/document.sh",
"demo": "scripts/demo.sh",
"develop": "scripts/develop.sh",
"clean": "scripts/clean.sh"
}
}