-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
{
"name": "airlytics",
"version": "1.0.0",
"description": "Content-based analytics without spying on your users",
"main": "index.js",
"author": "caleb.peterson@cubicle6.com",
"license": "MIT",
"scripts": {
"serve": "cross-env NODE_ENV=development netlify dev --functions build",
"clean": "rm -rf build",
"build:functions": "cross-env NODE_ENV=production webpack-cli",
"build:bundle": "netlify functions:build --src build --functions staging",
"build:docs": "node scripts/build-docs",
"build": "npm-run-all -s clean build:functions build:docs",
"watch:build": "cross-env NODE_ENV=development webpack-cli --watch",
"example": "live-server example",
"watch": "npm-run-all -p watch:build serve"
},
"dependencies": {
"airtable": "^0.8.1",
"cross-env": "^7.0.0",
"dotenv": "^8.2.0",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.21",
"regenerator-runtime": "^0.13.5"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.2",
"live-server": "^1.2.1",
"netlify-cli": "^2.32.0",
"npm-run-all": "^4.1.5",
"progress-bar-webpack-plugin": "^2.1.0",
"raw-loader": "^4.0.0",
"showdown": "^1.9.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2",
"zip-webpack-plugin": "^3.0.0"
}
}