-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
{
"name": "solid-ts-starter",
"version": "1.0.0",
"main": "index.js",
"author": "Atif Afzal <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "NODE_ENV=production webpack",
"storybook": "start-storybook -p 6006",
"check-types": "tsc",
"test": "run-p check-types"
},
"husky": {
"hooks": {
"pre-push": "yarn test"
}
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@storybook/html": "~5.3.13",
"@types/history": "^4.7.5",
"@types/html-webpack-plugin": "^3.2.2",
"@types/pouchdb": "^6.4.0",
"@types/ramda": "^0.26.41",
"@types/webpack": "^4.41.6",
"@types/webpack-bundle-analyzer": "^2.13.3",
"@types/webpack-env": "^1.14.1",
"babel-loader": "^8.0.6",
"babel-preset-solid": "^0.16.8",
"css-loader": "^3.4.2",
"fork-ts-checker-webpack-plugin": "^4.0.4",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"style-loader": "^1.1.3",
"ts-node": "^8.6.2",
"typescript": "^3.8.2",
"webpack": "^4.41.6",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"dropbox": "^4.0.30",
"emotion": "^10.0.27",
"history": "^4.10.1",
"memorystream": "^0.3.1",
"pouchdb-browser": "^7.2.1",
"pouchdb-load": "^1.4.6",
"pouchdb-replication-stream": "^1.2.9",
"rxjs": "^6.5.4",
"solid-js": "^0.16.8"
}
}