-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1023 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
35
{
"name": "fintechapp-frontend",
"version": "1.0.0",
"description": "Frontend for financial data analysis application.",
"author": "Arthur Tapper",
"license": "SEE LICENSE IN EULA.md",
"repository": {
"type": "git",
"url": "git@arthurtapper.com:Art/finTechApp-frontEnd.git"
},
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "web-test-runner \"src/**/*.test.jsx\"",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "prettier --check \"src/**/*.{js,jsx}\""
},
"dependencies": {
"axios": "^0.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-grid-layout": "^1.3.3",
"react-sizeme": "^3.0.2"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.1.0",
"@snowpack/plugin-react-refresh": "^2.5.0",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@testing-library/react": "^11.2.6",
"@web/test-runner": "^0.13.3",
"chai": "^4.3.4",
"prettier": "^2.2.1",
"snowpack": "^3.3.7"
}
}