forked from martpie/next-transpile-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.96 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
{
"name": "next-transpile-modules",
"version": "8.0.0",
"license": "MIT",
"author": "Pierre de la Martinière <pierre.de.la.martiniere@gmail.com>",
"description": "Next.js plugin to transpile code from node_modules (supports TypeScript)",
"main": "src/next-transpile-modules.js",
"files": [
"src/next-transpile-modules.js",
"src/next-transpile-modules.d.ts"
],
"scripts": {
"setup": "node --trace-uncaught src/__tests__/setup.js",
"update:next": "npm run setup && bash scripts/next-update.sh",
"typings": "tsc",
"prepublishOnly": "npm run typings",
"pretest": "npm run setup",
"quickie": "node --trace-uncaught src/__tests__/setup.js && yarn --cwd src/__tests__/__apps__/yarn-workspaces/app run dev",
"test": "jest --forceExit",
"test:debug": "jest --detectOpenHandles --forceExit",
"test:lint": "eslint .",
"test:formatting": "prettier --check \"**/*.js\"",
"test:formatting:fix": "prettier --check \"**/*.js\" --write",
"test:prepare:npm-basic": "npm run build --prefix=src/__tests__/__apps__/npm-basic",
"test:prepare:yarn-workspaces": "yarn --cwd src/__tests__/__apps__/yarn-workspaces/app run build",
"test:prepare:yarn-workspaces-symlinks": "yarn --cwd src/__tests__/__apps__/yarn-workspaces-symlinks/app run build",
"test:prepare:webpack-4": "yarn --cwd src/__tests__/__apps__/webpack-4/app run build",
"test:prepare:webpack-4-symlinks": "yarn --cwd src/__tests__/__apps__/webpack-4-symlinks/app run build",
"test:prepare:pnpm": "npm run build --prefix=src/__tests__/__apps__/pnpm",
"test:prepare": "npm run test:prepare:npm-basic && npm run test:prepare:yarn-workspaces && npm run test:prepare:yarn-workspaces-symlinks && npm run test:prepare:webpack-4 && npm run test:prepare:webpack-4-symlinks && npm run test:prepare:pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martpie/next-transpile-modules.git"
},
"bugs": {
"url": "https://github.com/martpie/next-transpile-modules/issues"
},
"homepage": "https://github.com/martpie/next-transpile-modules#readme",
"keywords": [
"next",
"next.js",
"plugin",
"transpile",
"modules",
"babel",
"webpack"
],
"dependencies": {
"enhanced-resolve": "^5.7.0",
"escalade": "^3.1.1"
},
"devDependencies": {
"@types/jest-environment-puppeteer": "4.4.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jest-environment-puppeteer": "^4.4.0",
"jest-puppeteer": "^4.4.0",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"puppeteer": "^5.5.0",
"rewire": "^4.0.1",
"typescript": "^3.9.7",
"webpack": "^4.44.0"
}
}