-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 4.19 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
104
105
{
"name": "starting-blocks",
"version": "5.0.7",
"description": "A JS page and blocks framework written in ES6 to go along Roadiz CMS or any other great CMS.",
"author": "Rezo Zero",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rezozero/starting-blocks.git"
},
"bugs": {
"url": "https://github.com/rezozero/starting-blocks/issues"
},
"homepage": "https://startingblocks.rezo-zero.com",
"scripts": {
"start": "concurrently \"npm run dev\" \"npm run serve\"",
"test": "echo \"No test specified\"",
"dev": "NODE_ENV=development rollup --config -w",
"serve": "http-server ./examples/dist -o",
"build": "NODE_ENV=production rollup --config",
"demo": "NODE_ENV=production TARGET=demo webpack --progress",
"dev-demo": "NODE_ENV=development TARGET=demo webpack --progress",
"doc": "esdoc -c esdoc.json"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"main": "dist/main.umd.js",
"module": "dist/main.esm.js",
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.1.2",
"@babel/plugin-proposal-do-expressions": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-proposal-function-bind": "7.0.0",
"@babel/plugin-proposal-function-sent": "7.1.0",
"@babel/plugin-proposal-logical-assignment-operators": "7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0",
"@babel/plugin-proposal-numeric-separator": "7.0.0",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/plugin-proposal-pipeline-operator": "7.0.0",
"@babel/plugin-proposal-throw-expressions": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-syntax-import-meta": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/register": "7.0.0",
"@babel/runtime": "7.1.2",
"babel-eslint": "9.0.0",
"babel-loader": "8.0.4",
"bottlejs": "1.7.1",
"clean-terminal-webpack-plugin": "1.1.0",
"concurrently": "4.0.1",
"copy-webpack-plugin": "4.5.4",
"es6-promise": "4.2.5",
"esdoc": "1.1.0",
"esdoc-brand-plugin": "1.0.1",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-exclude-source-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "5.7.0",
"eslint-config-standard": "12.0.0",
"eslint-loader": "2.1.1",
"eslint-plugin-dependencies": "2.4.0",
"eslint-plugin-html": "4.0.6",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"event-hooks-webpack-plugin": "2.1.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"gsap": "2.0.2",
"html-webpack-include-assets-plugin": "1.0.6",
"html-webpack-multi-build-plugin": "1.0.0",
"html-webpack-plugin": "4.0.0-beta.2",
"http-server": "0.11.1",
"imports-loader": "0.8.0",
"intersection-observer": "0.5.1",
"lazysizes": "4.1.4",
"post-compile-webpack-plugin": "0.1.2",
"rollup": "0.66.6",
"rollup-plugin-alias": "1.4.0",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-terser": "3.0.0",
"rollup-plugin-uglify": "6.0.0",
"script-ext-html-webpack-plugin": "2.0.1",
"terser-webpack-plugin": "1.1.0",
"uglifyjs-webpack-plugin": "2.0.1",
"url-polyfill": "1.1.0",
"webpack": "4.22.0",
"webpack-bundle-analyzer": "2.13.1",
"webpack-cli": "3.1.2",
"webpack-merge": "4.1.4",
"webpack-notifier": "1.7.0",
"whatwg-fetch": "3.0.0",
"worker-loader": "1.1.1"
}
}