-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "yarn",
"version": "1.0.0",
"description": "preact taskboard",
"main": "index.js",
"scripts": {
"test": "test",
"build:prod": "webpack",
"start": "npm run start-mockapi & webpack-dev-server --open",
"start-mockapi": "json-server --watch db.json --port 3001",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"repository": "git+https://github.com/abhishekkhandait/Preact-Task-Board.git",
"keywords": [
"preact",
"taskboard",
"typescript",
"webpack",
"redux",
"preact-redux"
],
"author": "Abhishek Khandait",
"license": "ISC",
"bugs": {
"url": "https://github.com/abhishekkhandait/Preact-Task-Board/issues"
},
"homepage": "https://github.com/abhishekkhandait/Preact-Task-Board#readme",
"private": false,
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"ts-loader": "^6.0.0",
"typescript": "^3.1.1",
"webpack": "^4.36.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"json-server": "^0.17.1",
"material-design-lite": "^1.3.0",
"preact": "^8.3.1",
"preact-context": "^1.1.3",
"preact-redux": "^2.0.3",
"redux": "^4.0.0",
"snyk": "^1.360.0"
},
"snyk": true
}