-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.12 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
{
"version": "1.0.0-pre",
"description": "phrase.shop, a web app to generate secure yet memorable passphrases",
"homepage": "https://github.com/philipmw/phrase.shop",
"license": "MIT",
"dependencies": {
"preact": "^10.10.4"
},
"repository": {
"type": "git",
"url": "https://github.com/philipmw/phrase.shop"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/preact": "^3.2.2",
"@types/jest": "^29.1.2",
"@typescript-eslint/parser": "^5.33.1",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"babel-jest": "^29.1.2",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.0.1",
"eslint": "^8.22.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"ts-loader": "^9.4.1",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
},
"scripts": {
"build": "webpack && npm run lint",
"lint": "eslint .",
"start": "webpack serve",
"test": "jest"
}
}