This repository was archived by the owner on Feb 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.23 KB
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
{
"name": "ontologymanagement",
"version": "0.0.0",
"private": true,
"scripts": {
"setup": "npm install",
"build": "better-npm-run clean:prod && better-npm-run build:prod",
"build-prod": "better-npm-run clean:prod && better-npm-run build:prod",
"newdel": "better-npm-run build:newdel",
"start": "better-npm-run build:style && better-npm-run build:watch",
"build-style": "better-npm-run build:style",
"clean": "better-npm-run clean:prod"
},
"betterScripts": {
"build:watch": {
"command": "webpack-dev-server --config webpack/dev.config.js --hot",
"env": {
"NODE_ENV": "development"
}
},
"build:prod": {
"command": "webpack --config webpack/prod.config.js --progress --profile --colors",
"env": {
"NODE_ENV": "production"
}
},
"build:style": {
"command": "webpack --config webpack/dev-style.config.js --progress",
"env": {
"NODE_ENV": "development"
}
},
"clean:prod": {
"command": "rimraf -g resources/web/nestle/gen/ontology*"
}
},
"dependencies": {
"@types/react": "15.6.4",
"@types/react-dom": "15.5.6",
"axios": "^0.18.0",
"formik": "^0.11.11",
"fuzzy": "^0.1.3",
"jquery": "2.2.2",
"jstree": "^3.3.5",
"react": "^15.6.2",
"react-bootstrap": "0.31.5",
"react-dom": "^15.6.2",
"react-json-table": "^0.1.1",
"react-table": "^6.8.6",
"yarn": "^1.6.0"
},
"devDependencies": {
"@types/react-hot-loader": "3.0.5",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-react-transform": "3.0.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"better-npm-run": "0.1.0",
"bootstrap-sass": "3.3.7",
"css-loader": "0.28.7",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.6",
"imports-loader": "0.7.1",
"node-sass": "4.7.2",
"postcss-loader": "1.3.3",
"react-csv": "^1.0.15-RC2",
"react-hot-loader": "3.1.3",
"redbox-react": "1.5.0",
"resolve-url-loader": "2.2.1",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"style-loader": "0.19.1",
"url-loader": "0.6.2",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7"
}
}