-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "viewer-server",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "npm run start:server",
"watch": "npm-run-all --parallel start:*",
"start:server": "node server/server.js",
"start:client": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"postinstall": "npm run build"
},
"author": "Jaime Rosales",
"license": "MIT",
"proxy": "http://localhost:3001/",
"repository": {
"type": "git",
"url": "git+https://github.com/Autodesk-Forge/viewer-react-express-headless.git"
},
"bugs": {
"url": "https://github.com/Autodesk-Forge/viewer-react-express-headless/issues"
},
"dependencies": {
"@aps_sdk/authentication": "^0.1.0-beta.1",
"@aps_sdk/autodesk-sdkmanager": "^0.0.7-beta.1",
"axios": "^0.15.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-0": "6.5.0",
"bootstrap": "^3.3.7",
"classnames": "^2.2.6",
"dotenv": "^16.4.5",
"express": "^4.16.3",
"font-awesome": "^4.7.0",
"lodash": "^4.17.10",
"npm-run-all": "^3.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^5.0.7",
"react-scripts": "^1.1.4",
"redux": "^3.6.0",
"scroll-to": "0.0.2"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"engines": {
"node": "6.7.x",
"npm": "3.10.x"
}
}