-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.42 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
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"release": "snowpack build && rm -rf docs && cp -r build/ docs/ && touch docs/.nojekyll",
"test": "web-test-runner \"src/**/*.test.tsx\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@heroicons/react": "^1.0.3",
"@windmill/react-ui": "^0.6.0",
"fp-ts": "^2.10.5",
"fp-ts-std": "^0.10.0",
"ml-regression-simple-linear": "^2.0.3",
"monocle-ts": "^2.3.10",
"newtype-ts": "^0.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.0",
"twojs-ts": "^0.7.0-13"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.1.0",
"@snowpack/plugin-postcss": "^1.4.1",
"@snowpack/plugin-react-refresh": "^2.5.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@testing-library/react": "^11.2.6",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/snowpack-env": "^2.3.3",
"@types/two.js": "^0.7.4",
"@web/test-runner": "^0.13.3",
"chai": "^4.3.4",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.2",
"prettier": "^2.2.1",
"snowpack": "^3.3.7",
"tailwindcss": "^2.2.2",
"typescript": "^4.2.4"
}
}