-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"scripts": {
"dev": "snowpack dev --polyfill-node",
"build": "snowpack build --polyfill-node",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "prettier --check \"src/**/*.{ts,js}\"",
"test": "jest",
"test:watch": "jest --watch",
"make-store-json-schema": "typescript-json-schema ./tsconfig.json StoreState -o src/store/store-schema.json"
},
"dependencies": {
"@tailwindcss/forms": "^0.3.2",
"ajv": "^8.4.0",
"dotenv": "^16.0.1",
"solid-js": "^0.26.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-replace": "^2.4.1",
"@snowpack/plugin-babel": "^2.1.6",
"@snowpack/plugin-dotenv": "^2.2.0",
"@snowpack/plugin-postcss": "^1.1.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@types/jest": "^26.0.22",
"@types/snowpack-env": "^2.3.3",
"@types/uuid": "^8.3.0",
"autoprefixer": "^10.2.5",
"babel-preset-solid": "^0.24.13",
"jest": "^26.6.3",
"postcss": "^8.2.8",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"snowpack": "^3.5.2",
"tailwindcss": "^2.0.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"typescript-json-schema": "^0.50.0"
}
}