-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.05 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "pmc-viewer",
"version": "1.1.0",
"description": "Canvas panel driven viewing experience for PMC project",
"files": [
"lib",
"umd",
"demo"
],
"scripts": {
"build": "NODE_ENV=development npm-run-all build-templates build-assets build-admin build-public",
"build-assets": "MICRO_SITE=true nwb build-web-app src dist/assets --color",
"build-templates": "fesk-metalsmith micro-site --color",
"build-admin": "cp -r ./admin ./dist/admin",
"build-public": "cp -r ./public/** ./dist",
"start": "run-p watch serve",
"serve": "fesk-live-server",
"watch": "NODE_ENV=development npm-watch",
"build-module": "NODE_ENV=production nwb build-react-component --no-demo",
"clean": "nwb clean-app src dist/assets",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"prepublish": "npm run build-module",
"test": "echo \"No tests yet\"",
"precommit": "lint-staged"
},
"dependencies": {
"@canvas-panel/core": "^0.0.9",
"@canvas-panel/redux": "^0.0.9",
"@canvas-panel/search": "^0.1.0",
"@fesk/bem-js": "^1.0.0",
"@fesk/react-bem": "^0.0.1",
"core-js": "^2.5.7",
"immutability-helper": "^2.6.4",
"manifesto.js": "git://github.com/stephenwf/manifesto.git#0bd82b210d0247537c30a1d78532c00e32fa5fa1",
"manifold": "git://github.com/IIIF-Commons/manifold.git#v1.2.16",
"material-components-web": "^0.30.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.6"
},
"devDependencies": {
"@fesk/live-server-plugin": "0.0.1",
"@fesk/plugin-markdown": "0.0.1",
"@fesk/plugin-metalsmith": "0.0.1",
"@fesk/plugin-micro-site": "0.0.1",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.34",
"babel-eslint": "^8.1.0",
"css-reset-and-normalize-sass": "^0.1.2",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flow": "^2.29.1",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-prettier": "^2.4.0",
"flow-bin": "^0.71.0",
"from-template": "^1.0.9",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"npm-run-all": "^4.1.2",
"npm-watch": "^0.3.0",
"nwb": "0.22.x",
"nwb-sass": "^0.8.4",
"prettier": "^1.9.2",
"sass-define": "0.0.5",
"webpack-manifest-plugin": "^2.0.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,scss,md}": [
"prettier --write",
"git add"
]
},
"watch": {
"build-public": {
"patterns": [
"public"
]
},
"build-admin": {
"patterns": [
"admin"
],
"extensions": "yml,html"
},
"build-templates": {
"patterns": [
"src"
],
"extensions": "md,html,twig"
},
"build-assets": {
"patterns": [
"src"
],
"extensions": "js,scss"
}
},
"fesk": {
"metalsmith": {
"source": "src/views",
"root": true
}
},
"author": "Digirati",
"license": "MIT",
"repository": "https://github.com/digirati-co-uk/pmc-viewer"
}