forked from digirati-co-uk/vam-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2 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
65
66
67
68
69
70
{
"name": "@digirati/vam-viewer",
"version": "1.5.0",
"license": "MIT",
"files": [
"dist",
"lib"
],
"git repository": "https://github.com/digirati-co-uk/vam-viewer",
"main": "dist/umd/@digirati/vam-viewer.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Stephen Fraser <[email protected]>",
"scripts": {
"build": "fesk-build --cjs --umd && tsc -p ./ --emitDeclarationOnly",
"start": "fesk-start --cjs",
"build-types": "tsc -p ./ --emitDeclarationOnly",
"test": "jest",
"prepare": "NODE_ENV=production fesk-build --cjs --umd && tsc -p ./ --emitDeclarationOnly"
},
"peerDependencies": {
"react": "16.14.0",
"react-dom": "16.14.0",
"manifesto.js": "^4.0.0"
},
"devDependencies": {
"@fesk/babel-config": "^1.3.0-next.2945936d",
"@fesk/eslint-config-standard": "^1.2.2",
"@fesk/scripts": "1.4.0-pr.b1c982eb",
"@storybook/addon-knobs": "^5.2.4",
"@storybook/react": "^5.3.10",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.9",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/react-test-renderer": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react-hooks": "^2.1.2",
"jest": "^24.9.0",
"react-swipeable": "^5.5.1",
"react-test-renderer": "^16.10.2",
"sass-loader": "^8.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"fesk": {
"typescript": true,
"port": 5000,
"library": "VAMViewer",
"metalsmith": {
"nunjucks": {
"liveServerPort": 35735
}
}
},
"dependencies": {
"@reach/router": "^1.3.3",
"bezier-easing": "^2.1.0",
"canvas-panel-beta": "2.0.6",
"query-string": "^6.11.1",
"react-flip-move": "^3.0.2",
"react-swipeable": "^5.5.1",
"style-loader": "^2.0.0"
}
}