-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "scenevr-author",
"version": "1.0.0",
"description": "authoring tool for SceneVR",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production --config webpack.config.js",
"dev-build": "webpack --mode=development --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --mode=development --config webpack.config.js --watch",
"start": "python app/server/api.py",
"makecert": "openssl req -x509 -nodes -days 10000 -newkey rsa:2048 -out local_only.crt -config self_signed.cfg",
"initdb": "python app/server/api.py initdb",
"devinit": "npm run makecert && npm run initdb && npm run build",
"clean": "rm -r app/static/dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NUKnightLab/scenevr-author.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NUKnightLab/scenevr-author/issues"
},
"homepage": "https://github.com/NUKnightLab/scenevr-author#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.16.7",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.2.3",
"mini-css-extract-plugin": "^2.5.3",
"react": "^16.8",
"react-dom": "^16.14.0",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0"
},
"babel": {
"plugins": [
"styled-jsx/babel"
],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"dependencies": {
"css-loader": "^5.2.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-sortable-hoc": "^0.8.3",
"style-loader": "^0.21.0",
"styled-jsx": "^5.0.0"
}
}