-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
31 lines (31 loc) · 838 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
{
"name": "webpack-scaffold-pwa",
"version": "0.1.0",
"main": "./main/generator.js",
"types": "./main/generator.d.ts",
"author": "Sendil Kumar",
"license": "MIT",
"scripts": {
"build": "tsc && cp ./templates/* ./main/templates/",
"lint:js": "eslint *.js",
"lint:ts": "tslint -c tslint.json '*.ts' './utils/*.ts'",
"test": "tsc && ava --verbose"
},
"dependencies": {
"@types/chalk": "^2.2.0",
"@types/cross-spawn": "^6.0.0",
"@webpack-cli/webpack-scaffold": "^0.1.1",
"chalk": "^2.4.1",
"cross-spawn": "^6.0.5",
"yeoman-generator": "^2.0.2"
},
"devDependencies": {
"@types/node": "^10.9.4",
"@types/yeoman-generator": "^2.0.3",
"ava": "^1.0.0-beta.8",
"babel-eslint": "^8.2.1",
"eslint": "^4.18.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
}
}