-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 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
{
"name": "framework-compare",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "Compare implementations of some basic webpages in different frameworks",
"main": "index.js",
"scripts": {
"start": "node ./scripts/dev.js",
"build": "node ./scripts/build.js",
"dev": "node ./scripts/dev.js",
"serve": "sirv --dev dist",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:debug": "cross-env PPTR_DEBUG=true jest --runInBand",
"prepare": "husky install",
"lint-staged": "lint-staged",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,html,vue}\"",
"tsc": "tsc -p jsconfig.json && npm run tsc -ws --if-present"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewiggins/framework-compare.git"
},
"author": "Andre Wiggins",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewiggins/framework-compare/issues"
},
"homepage": "https://github.com/andrewiggins/framework-compare#readme",
"workspaces": [
"./frameworks/*",
"./scripts/",
"./tests"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,vue}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/html-minifier": "^4.0.3",
"@types/jest": "^29.0.0",
"babel-jest": "^29.6.2",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-puppeteer": "^9.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"puppeteer": "^21.0.3",
"rimraf": "^5.0.1",
"rollup": "^4.1.4",
"rollup-plugin-visualizer": "^5.9.2"
},
"jest": {
"preset": "jest-puppeteer",
"transform": {
"^.+\\.[t|j]sx?$": "<rootDir>/tests/babelTransformer.js"
}
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "none"
},
"volta": {
"node": "20.8.1"
}
}