-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.98 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
113
114
115
116
117
118
119
{
"name": "data-model-validator-site",
"version": "2.0.1",
"description": "User interface for the OpenActive data model validator",
"homepage": "https://www.openactive.io/",
"author": "OpenActive Community <[email protected]>",
"keywords": [
"openactive",
"odi",
"validator",
"json"
],
"main": "src/server/index.js",
"engines": {
"node": "14.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openactive/data-model-validator-site.git"
},
"bugs": {
"url": "https://github.com/openactive/data-model-validator-site/issues"
},
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-brands-svg-icons": "^5.3.1",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "0.1.0-11",
"@openactive/data-model-validator": "^2.0.32",
"@openactive/data-models": "^2.0.105",
"@openactive/rpde-validator": "^2.0.0",
"axios": "^0.19.2",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"brace": "^0.11.1",
"compression": "^1.7.3",
"copy-to-clipboard": "^3.3.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-ws": "^4.0.0",
"heroku-ssl-redirect": "0.0.4",
"highlight.js": "^9.18.1",
"htmlmetaparser": "^2.0.3",
"htmlparser2": "^4.1.0",
"i": "^0.3.6",
"jquery": "^3.3.1",
"js-base64": "^3.3.3",
"jsonpath": "^1.0.0",
"markdown-to-jsx": "^6.7.3",
"npm": "^6.12.1",
"popper.js": "^1.14.4",
"query-string": "^6.1.0",
"react": "^16.5.2",
"react-ace": "^6.2.0",
"react-dom": "^16.5.2",
"react-highlight": "^0.12.0",
"react-pluralize": "^1.4.1",
"react-router-dom": "^4.3.1",
"react-svg-loader": "^2.1.0",
"react-test-renderer": "^16.5.2",
"request": "^2.88.2",
"semver": "^5.5.1",
"strip-json-comments": "^2.0.1"
},
"scripts": {
"lint": "eslint --ext .jsx --ext .js \"src/\"",
"start": "node -r dotenv/config dist/server/index.js",
"debug": "node --inspect -r dotenv/config dist/server/index.js",
"postinstall": "npm run build && npm ls @openactive/data-models @openactive/data-model-validator",
"build": "webpack --mode production && babel src/server --ignore spec.js --out-dir dist/server",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "BABEL_ENV=development nodemon --exec babel-node src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"pretest": "npm run lint",
"test": "npm run test-no-lint",
"test-no-lint": "BABEL_ENV=test babel-node spec/run.js",
"update": "npm update @openactive/data-models @openactive/data-model-validator @openactive/rpde-validator && npm run postinstall"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-import-redirect": "^1.1.1",
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^3.6.1",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"dotenv-webpack": "^1.5.7",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.2.0",
"jasmine-enzyme": "^6.1.2",
"jsdom": "^11.12.0",
"lost-pixel": "^3.18.2",
"nodemon": "^1.18.4",
"sass": "^1.49.9",
"sass-loader": "^7.2.0",
"style-loader": "^0.21.0",
"sync-request": "^6.1.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.1.9"
}
}