-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "doodler",
"version": "0.1.0",
"description": "Small doodling app",
"main": "app.js",
"repository": "https://github.com/jtanadi/doodler.git",
"author": "JT",
"license": "MIT",
"private": false,
"scripts": {
"start": "node .",
"dev": "parcel src/index.html --out-dir dev/",
"dev:reset": "rm -rf .cache && npm run dev",
"postinstall": "./node_modules/.bin/parcel build src/index.html --public-url ./"
},
"dependencies": {
"express": "^4.17.1",
"gambar": "github:jtanadi/gambar#master",
"lodash": "^4.17.15",
"nanoid": "^2.1.11",
"react": "^16.9.0",
"react-color": "^2.18.0",
"react-dom": "^16.9.0",
"react-draggable": "^4.2.0",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"parcel-bundler": "^1.12.3",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
}
}