-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 4.7 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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "beepspurt",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start:-": "",
"start": "--------------- START SERVER DEV/PROD/DEBUG ----------------------",
"start:prod": "env NODE_ENV=production ./plask.sh ./dist/server.min.js",
"start:dev": "env NODE_ENV=development ./plaskdbg.sh ./dist/server.js",
"start:debug": "env NODE_ENV=development ./plaskdbg.sh debug ./dist/server.js",
"build:~envs~": "",
"build:envs-": "---------- BUILD DEV/PROD ENVIRONMENT ---------",
"build:all": "npm run build:server:all && npm run build:client:all && npm run build:plask:all",
"build:js:all": "npm run build:server:all && npm run build:client:all",
"build:dev": "npm run build:server:dev && npm run build:client:dev",
"build:prod": "npm run build:server:prod && npm run build:client:prod",
"build:client-": "",
"build:client": "------------ CLIENT WEBAPP JS --------------------",
"build:client:all": "npm run build:client:dev && npm run build:client:prod",
"build:client:dev": "env NODE_ENV=development jspm bundle-sfx client/main.js dist/client.js && { echo '\\033[0;92m√√√√\\033[0m'; } || true",
"build:client:prod": "env NODE_ENV=production jspm bundle-sfx client/main.js dist/client.min.js --minify && { echo '\\033[0;92m√√√√\\033[0m'; } || true",
"build:server-": "",
"build:server": "------------ SERVER ENGINE JS --------------------",
"build:server:all": "npm run build:server:dev && npm run build:server:prod",
"build:server:dev": "env NODE_ENV=development jspm bundle-sfx server/main.js dist/server.js && { echo '\\033[0;92m√√√√\\033[0m'; } || true",
"build:server:prod": "env NODE_ENV=production jspm bundle-sfx server/main.js dist/server.min.js --minify && { echo '\\033[0;92m√√√√\\033[0m'; } || true",
"build:plask:-": "",
"build:plask": "--------- PLASK/PLASK.APP XCODE --------------------------",
"build:plask:all": "npm run build:plask:dev && npm run build:plask:prod",
"build:plask:dev": "cd plask && ./xcodebuild.sh Debug",
"build:plask:prod": "cd plask && ./xcodebuild.sh Release",
"sign:plask-": "",
"sign:plask": "---------- PLASK APP SIGNING (ad hoc certificate) -----------",
"sign:plask:all": "npm run sign:plask:dev && npm run sign:plask:prod",
"sign:plask:dev": "sudo codesign --force --sign - plask/build/Debug/Plask.app",
"sign:plask:prod": "sudo codesign --force --sign - plask/build/Release/Plask.app",
"lint-": "",
"lint:": "----------------- ESLINT -------------------",
"lint:all": "npm run lint:client && npm run lint:server",
"lint:client": "eslint ./client/ && { echo '\\033[0;92m√ SUCCESS √\\033[0m'; echo; } || true",
"lint:server": "eslint ./server/ && { echo '\\033[0;92m√ SUCCESS √\\033[0m'; echo; } || true",
"test:-": "",
"test:": "--------------- TESTING ----------------------------------",
"test": "echo \"Error: no test procedure specified - lazy developer!\" && exit 1"
},
"author": "Anthony Bowyer-Lowe <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chalk": "^1.1.3",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-node": "^0.2.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"jspm": "^0.16.23",
"node-notifier": "^4.5.0"
},
"jspm": {
"dependencies": {
"performance-now": "npm:performance-now@^0.2.0",
"react": "npm:react@^15.0.1",
"react-dom": "npm:react-dom@^15.0.1",
"restify": "github:ynohtna/node-restify@hacks",
"spdy": "npm:spdy@^3.2.3",
"ynohtna/node-restify": "github:ynohtna/node-restify@hacks"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-plugin-transform-object-rest-spread": "npm:babel-plugin-transform-object-rest-spread@^6.6.5",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"chalk": "npm:chalk@^1.1.3",
"core-js": "npm:core-js@^1.1.4",
"crypto": "github:jspm/nodelibs-crypto@^0.1.0",
"dgram": "github:jspm/nodelibs-dgram@^0.1.0",
"events": "github:jspm/nodelibs-events@^0.1.1",
"react-redux-provide": "npm:react-redux-provide@^5.2.3",
"redux": "npm:redux@^3.3.1",
"redux-saga": "npm:redux-saga@^0.9.5",
"restify-plugins": "npm:restify-plugins@^1.0.2",
"watershed": "npm:watershed@^0.3.1"
},
"overrides": {
"github:ynohtna/node-restify@hacks": {
"registry": "npm"
}
}
}
}