-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.86 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
{
"homepage": "https://www.playingwithpolygons.com",
"name": "playing-with-polygons",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "export SET NODE_OPTIONS=--openssl-legacy-provider && next dev",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && next build",
"start": "export SET NODE_OPTIONS=--openssl-legacy-provider && next start",
"coverage": "jest --coverage",
"test": "jest --watch",
"lint": "yarn eslint . --ignore-path ./.gitignore",
"pregh-deploy": "yarn test && yarn lint && GH_PAGES_BUILD=true next build && next export && touch ./out/.nojekyll",
"gh-deploy": "gh-pages -t -d out"
},
"dependencies": {
"@reach/slider": "^0.15.0",
"lodash.reverse": "^4.0.1",
"next": "10.2.0",
"p5": "^1.3.1",
"react": "17.0.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "17.0.2",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.23",
"@types/lodash.reverse": "^4.0.7",
"@types/p5": "^0.9.1",
"@types/react": "^17.0.5",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-jest": "^26.6.3",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"gh-pages": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}