-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 845 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 845 Bytes
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
{
"version": "0.0.1",
"scripts": {
"lambda-serve": "netlify-lambda serve lambda-src",
"lambda-build": "netlify-lambda build lambda-src",
"build": "NODE_ENV=production webpack && npm run lambda-build",
"dev": "NODE_ENV=development concurrently \"webpack-dev-server --content-base src/\" \"npm run lambda-serve\"",
"test": "echo 'No tests are currently configured.'"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"dotenv": "^7.0.0",
"stripe": "^6.36.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.2",
"netlify-lambda": "^1.6.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
}
}