-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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
{
"name": "esm-rollup-combo",
"version": "1.0.0",
"description": "NO BABEL!!! NO WEBPACK!!! Just ESM.js + Rollup.js FTW!!! ლ(ಠ益ಠ)ლ",
"main": "index.js",
"private": true,
"scripts": {
"develop": "(node -r esm src/index.js) | bunyan",
"test": "mocha -r esm --recursive ./src/**/*.spec.js",
"build": "npm test && rm -rf ./dist && rollup --config rollup.config.prod.js",
"start": "NODE_ENV='production' node ./dist/app/app.bundle.js | bunyan"
},
"dependencies": {
"axios": "^0.18.1",
"bunyan": "^1.8.12",
"esm": "^3.2.25",
"rollup-plugin-copy": "^0.2.3",
"sequelize": "^5.21.5",
"sqlite": "^3.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-plugin-prettier": "^3.0.0",
"mocha": "^5.2.0",
"moxios": "^0.4.0",
"prettier": "1.15.3",
"rollup": "^0.68.0",
"rollup-plugin-node-resolve": "^4.0.0",
"sinon": "^7.2.2",
"sqlite3": "^4.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spudmashmedia/esm-rollup-combo.git"
},
"author": "Spudmash Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/spudmashmedia/esm-rollup-combo/issues"
},
"homepage": "https://github.com/spudmashmedia/esm-rollup-combo#readme"
}