-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.77 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
{
"name": "lingo",
"version": "1.0.0",
"description": "",
"main": "docs/index.html",
"scripts": {
"watch": "npx parcel src/index.html",
"build:gh-pages": "npx parcel build --dist-dir docs/ --public-url ./ src/index.html",
"test:check": "tsc --noEmit",
"test:cypress": "start-server-and-test \"npx parcel --port 9999 src/index.html\" http://localhost:9999 \"cypress run\"",
"test:lint": "eslint src",
"test:unit": "jest",
"test:unit:coverage": "jest --coverage",
"test": "run-p test:**"
},
"author": "",
"license": "ISC",
"dependencies": {
"prop-types": "^15.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/cypress": "^1.1.3",
"@types/enzyme": "^3.10.10",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.17",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"babel-jest": "^27.3.1",
"cypress": "^8.5.0",
"enzyme": "^3.11.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.0-nightly.620",
"start-server-and-test": "^1.14.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.3"
}
}