-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.73 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.73 KB
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
{
"name": "magic-search",
"version": "1.0.0",
"description": "AST based search",
"bin": "bin.js",
"author": "Jakub Mazurek (@jayu) <jakub.mazurek.dev@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/babel__code-frame": "^7.0.3",
"@types/babel__generator": "^7.6.3",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/node-fetch": "^3.0.3",
"@types/object.omit": "^3.0.0",
"@types/unzipper": "^0.10.4",
"babel-jest": "^27.4.4",
"babel-plugin-root-import": "^6.6.0",
"jest": "^27.4.4",
"node-fetch-commonjs": "^3.1.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.2",
"unzipper": "^0.10.11"
},
"dependencies": {
"@babel/code-frame": "^7.16.0",
"@babel/generator": "7.16.0",
"@babel/parser": "7.16.4",
"@babel/plugin-syntax-typescript": "7.16.0",
"babel-loader": "^8.2.3",
"colorette": "^2.0.16",
"commander": "^8.3.0",
"ignore": "^5.1.9",
"ora": "^6.0.1",
"prettier": "^2.5.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"build:watch": "webpack --mode development",
"build": "webpack --mode production",
"build:standalone": "STANDALONE=true yarn build",
"build:pkg": "yarn build:standalone && node createPkg.js",
"babel": "rm -rf babel-dist && babel ./ --extensions \".ts,.tsx\" -d babel-dist",
"typecheck": "tsc --noEmit --project tsconfig.json",
"dev": "node ./dist/dev.js",
"cli": "node ./dist/cli.js",
"test": "yarn build && jest --passWithNoTests",
"test:setup": "node ./dist/getFixtures.js"
}
}