-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.07 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
{
"name": "tonicmart",
"version": "0.0.1",
"description": "Medical product marketplace - open to all.",
"main": "server.js",
"dependencies": {
"ag-grid": "10.0.1",
"ag-grid-enterprise": "10.0.1",
"ag-grid-react": "10.0.0",
"auth0-lock": "10.11.0",
"babel-core": "6.23.1",
"babel-loader": "6.3.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"css-loader": "0.26.2",
"express": "4.4.5",
"extract-text-webpack-plugin": "2.0.0",
"file-loader": "0.10.1",
"immutable": "3.8.0",
"jwt-decode": "2.1.0",
"pikaday": "1.5.1",
"radium": "0.18.1",
"react": "15.4.2",
"react-bootstrap": "0.30.7",
"react-country-region-selector": "1.0.4",
"react-dom": "15.4.2",
"react-redux": "5.0.2",
"react-router": "3.0.2",
"react-treebeard": "1.1.2",
"redux": "3.6.0",
"redux-thunk": "2.2.0",
"style-loader": "0.13.2",
"superagent": "3.4.1",
"webpack": "2.6.1",
"webpack-node-externals": "1.5.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client-prod-build": "./node_modules/.bin/webpack --config ./webpack.client-config.js -p",
"client-build": "./node_modules/.bin/webpack --config ./webpack.client-config.js",
"client-dev-build": "./node_modules/.bin/webpack -d --config ./webpack.client-config.js",
"server-build": "./node_modules/.bin/webpack --config ./webpack.server-config.js",
"server-prod-build": "./node_modules/.bin/webpack --config ./webpack.server-config.js -p",
"dev-serve": "babel-node ./src/server.js --presets es2015,stage-2",
"serve": "node ./build/server.js",
"postinstall": "npm run client-prod-build && npm run server-prod-build",
"build": "npm run client-build && npm run server-build"
},
"author": "Kurt Snyder",
"license": "UNLICENSED",
"devDependencies": {
"babel-cli": "6.23.0",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-preset-stage-2": "6.22.0",
"json-loader": "0.5.4",
"redux-devtools": "^3.2.0"
},
"engines": {
"node": "4.4.3",
"npm": "3.8.6"
}
}