-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.71 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
{
"name": "@gugadev/wc-stories",
"version": "1.0.0",
"description": "Web Component like Instragram/Whatsapp stories",
"main": "index.js",
"repository": "https://github.com/gugadev/wc-stories.git",
"author": "Gustavo Garzaki",
"license": "MIT",
"scripts": {
"start": "cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack-dev-server --config webpack.dev.ts",
"pack": "run-s pack:prod copy:meta",
"pack:prod": "cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack --config webpack.prod.ts",
"pack:demo": "run-s pack:prod copy:assets",
"lint": "tslint --project tsconfig.json",
"test": "jest --verbose --config=jest.config.json",
"copy:meta": "cp package.json dist/ && cp README.md dist/",
"copy:assets": "cp dist/* demo/"
},
"dependencies": {
"@types/expect-puppeteer": "^3.3.1",
"@types/jest": "^24.0.0",
"@types/jest-environment-puppeteer": "^2.2.1",
"@types/node": "^10.12.24",
"@types/puppeteer": "^1.12.1",
"@types/webpack": "^4.4.24",
"@types/webpack-dev-server": "^3.1.2",
"core-js": "^2.6.4",
"lit-element": "^2.0.1"
},
"devDependencies": {
"clean-webpack-plugin": "^1.0.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jest-puppeteer": "^3.9.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"puppeteer": "^1.12.2",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}