-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.36 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
{
"name": "jsforce-web-console",
"version": "1.0.0",
"description": "A Web-based console (REPL) environment for JSforce",
"main": "index.js",
"scripts": {
"server:prod": "bin/server-prod",
"server:dev": "bin/server-dev",
"start": "npm run server:prod",
"build:scripts": "browserify -t [ babelify --optional es7.objectRestSpread runtime ] -t [ envify --NODE_ENV production ] -o public/scripts/main.js app/scripts/main.js",
"build:styles": "lessc app/styles/main.less > public/styles/main.css",
"build:assets": "cp -r app/vendor public",
"build": "npm run build:scripts && npm run build:styles && npm run build:assets"
},
"author": "Shinichi Tomita <shinichi.tomita@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-runtime": "^5.8.20",
"babelify": "^6.1.3",
"browserify": "^11.0.1",
"enchilada": "^0.12.0",
"envify": "^3.4.0",
"less-middleware": "^2.0.1"
},
"dependencies": {
"babel-core": "^5.8.22",
"classnames": "^2.1.3",
"express": "^4.13.3",
"jsforce-ajax-proxy": "^1.0.0",
"react": "^0.13.3",
"react-object-inspector": "^0.1.4",
"react-redux": "^0.9.0",
"redux": "^1.0.1",
"redux-actions": "^0.7.0",
"redux-logger": "0.0.3",
"redux-thunk": "^0.1.0",
"reselect": "0.0.2",
"type-name": "^1.0.1"
}
}