-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
110 lines (110 loc) · 2.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "instapack",
"version": "8.3.0",
"description": "All-in-one TypeScript and Sass compiler for web applications!",
"keywords": [
"typescript",
"javascript",
"sass",
"css",
"html-template",
"nodejs",
"compiler",
"bundler",
"minify",
"sourcemaps",
"build-tool",
"developer-tools",
"front-end",
"client-side",
"vue",
"react",
"babel",
"eslint",
"hot-reload",
"zero-configuration"
],
"homepage": "https://github.com/ryanelian/instapack#readme",
"bugs": {
"url": "https://github.com/ryanelian/instapack/issues",
"email": "ryan.elian@accelist.com"
},
"license": "MIT",
"author": {
"name": "Ryan Elian",
"email": "ryan.elian@accelist.com",
"url": "https://github.com/ryanelian"
},
"main": "bin/index.js",
"bin": {
"ipack": "bin/ipack.js",
"instapack": "bin/ipack.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanelian/instapack.git"
},
"scripts": {
"compile": "tsc",
"compile:watch": "tsc -w",
"lint": "eslint src/** --ext ts --env node --fix",
"build": "npm run compile && npm run lint",
"test": "ava --verbose",
"test:watch": "ava --watch"
},
"dependencies": {
"@babel/core": "7.13.14",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
"acorn": "8.1.0",
"ajv": "8.0.5",
"autoprefixer": "10.2.5",
"babel-loader": "8.2.2",
"chalk": "4.1.0",
"chokidar": "3.5.1",
"clean-css": "5.1.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "5.2.0",
"dotenv": "8.2.0",
"enhanced-resolve": "5.7.0",
"fast-glob": "3.2.5",
"follow-redirects": "1.13.3",
"fs-extra": "9.1.0",
"html-minifier": "4.0.0",
"loader-utils": "2.0.0",
"merge-source-map": "1.1.0",
"mini-css-extract-plugin": "1.4.1",
"portfinder": "1.0.28",
"postcss": "8.2.9",
"progress": "2.0.3",
"promise.allsettled": "1.0.4",
"react-refresh": "0.10.0",
"sass": "1.32.8",
"say": "0.16.0",
"source-map": "0.6.1",
"typescript": "4.2.4",
"upath": "2.0.1",
"webpack": "5.31.0",
"webpack-plugin-serve": "1.4.1",
"which": "2.0.2",
"yargs": "16.2.0"
},
"devDependencies": {
"@types/acorn": "^4.0.5",
"@types/eslint": "^7.2.8",
"@types/follow-redirects": "^1.13.0",
"@types/fs-extra": "^9.0.10",
"@types/mini-css-extract-plugin": "^1.4.1",
"@types/node": "^14.14.37",
"@types/progress": "^2.0.3",
"@types/sass": "^1.16.0",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"@vue/compiler-sfc": "3.0.11",
"ava": "3.15.0",
"eslint": "7.23.0",
"memory-fs": "0.5.0",
"vue-template-compiler": "2.6.12"
}
}