-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.84 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
{
"name": "da-dashboard-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hig/components": "^0.1.1",
"async": "^2.6.0",
"babel-cli": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.3",
"bootstrap": "3",
"es7-shim": "^6.0.0",
"flow-bin": "^0.54.1",
"guid": "^0.0.12",
"hig-react": "^0.28.36",
"isomorphic-fetch": "^2.2.1",
"node-sass-chokidar": "^0.0.3",
"node-sass-tilde-importer": "^1.0.2",
"npm-run-all": "^4.1.2",
"react": "^16.3.2",
"react-bootstrap": "^0.31.3",
"react-dom": "^16.3.2",
"react-numeric-input": "^2.2.3",
"react-redux": "^5.0.7",
"react-scripts": "1.0.14",
"react-test-renderer": "^16.3.2",
"recursive-readdir": "^2.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"request-promise": "^4.2.2",
"forge-apis": "^0.4.1"
},
"proxy": {
"/api": {
"target": "http://localhost:3001",
"secure": false
}
},
"scripts": {
"build-css": "node-sass-chokidar --importer=node_modules/node-sass-tilde-importer src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --importer=node_modules/node-sass-tilde-importer src/ -o src/ --watch --recursive",
"start-js": "set PORT=3001 && react-scripts start",
"start-react": "npm-run-all -p watch-css start-js",
"start-dev": "npm-run-all -p watch-css start-js start",
"start-server": "node start_server.js",
"start": "node start_server.js",
"nodemon": "nodemon start_server.js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"flow": "flow",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"host-storybook": "start-storybook -p 9009 -s public",
"storybook": "npm-run-all -p watch-css host-storybook",
"build-storybook-only": "build-storybook -s public",
"build-storybook": "npm-run-all build-css build-storybook-only",
"testReducers": "./node_modules/.bin/babel-node ./src/tests/reducer.tests.js",
"eslint": "./node_modules/.bin/eslint src/*"
},
"devDependencies": {
"@adsk/bim360-matrix-bootstrap-sass": "^1.5.1",
"@adsk/react-base-table": "^1.0.0-alpha.8d95da5a",
"nodemon": "^1.17.5",
"@storybook/addon-actions": "^3.2.11",
"@storybook/addon-knobs": "^3.2.10",
"@storybook/addon-links": "^3.2.10",
"@storybook/addon-storyshots": "^3.2.11",
"@storybook/react": "^3.2.11",
"babel-eslint": "^8.0.3",
"commander-plus": "^0.0.6",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1"
}
}