-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1000 Bytes
/
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
{
"name": "vtex-render-session",
"version": "1.9.2",
"description": "Adds session as external to render runtime",
"scripts": {
"clean": "rimraf dist",
"start": "webpack-dev-server --open",
"watch": "webpack --watch",
"build": "npm run clean && npm run buildProd && npm run buildDev",
"buildProd": "webpack --mode=\"production\" --config ./webpack.config.js",
"buildDev": "webpack --mode=\"development\" --config ./webpack.config.js",
"prereleasy": "npm run build",
"postreleasy": "npm publish"
},
"main": "dist/index.min.js",
"devDependencies": {
"ts-loader": "^5.2.2",
"tslint": "^5.11.0",
"tslint-config-vtex": "^2.1.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.1.3",
"webpack": "^4.25.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"repository": {
"type": "git",
"url": "git@github.com:vtex-apps/render-session.git"
},
"dependencies": {},
"engines": {
"node": ">=6.0.0"
}
}