-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 986 Bytes
/
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
{
"version": "1.0.0",
"description": "Programming Challenge to show off UI/UX skills in React",
"scripts": {
"start": "snowpack dev --reload",
"build": "snowpack build",
"test": "NODE_ENV=test jest --watch"
},
"author": "Dan Stein",
"license": "ISC",
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-react-refresh": "^2.3.9",
"@snowpack/plugin-run-script": "^2.3.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.7",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-watch": "^7.0.0",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"snowpack": "^3.0.1"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.1.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
}
}