-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 892 Bytes
/
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
{
"name": "text-measure-off-thread",
"version": "1.0.0",
"main": "index.js",
"author": "John Johnson <[email protected]>",
"license": "MIT",
"scripts": {
"start": "parcel src/demo/index.html --open",
"build": "parcel build src/demo/index.html",
"build:lib": "parcel build src/index.ts",
"deploy": "npm run build && surge ./dist measure-text-off-thread.surge.sh",
"prettier": "prettier --single-quote --print-width 100 --trailing-comma es5 --write 'src/**/*.{js,jsx,ts,tsx,css}'"
},
"devDependencies": {
"@types/react": "^16.4.15",
"@types/react-dom": "^16.0.8",
"parcel-bundler": "^1.10.2",
"prettier": "^1.14.3",
"react-pose": "^3.3.6",
"react-typist": "^2.0.4",
"styled-components": "^3.4.9",
"surge": "^0.20.1",
"typescript": "^3.1.1"
},
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2"
}
}