forked from nteract/nteract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) Β· 5.35 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "nteract-monorepo",
"version": "0.0.0",
"description": "Interactive literate coding notebook!",
"repository": {
"type": "git",
"url": "https://github.com/nteract/nteract.git"
},
"keywords": [
"jupyter",
"electron",
"notebook",
"nteract",
"data"
],
"author": "nteract contributors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nteract/nteract/issues"
},
"homepage": "https://github.com/nteract/nteract",
"scripts": {
"postinstall": "npm run lerna",
"lerna": "lerna bootstrap --hoist --loglevel verbose --nohoist='{electron-builder,electron-updater,lodash,ijavascript,zeromq,nteract-assets,mathjax-electron,github,jmp,canvas,canvas-prebuilt}'",
"app:desktop": "lerna run start --scope nteract --stream",
"app:play": "lerna run dev --scope @nteract/play --stream",
"app:showcase": "lerna run dev --scope @nteract/showcase --stream",
"app:commuter": "lerna run dev --scope @nteract/commuter --stream",
"app:notebook-on-next": "lerna run dev --scope @nteract/notebook-on-next --stream",
"app:jupyter-extension": "lerna run dev --scope nteract-on-jupyter --stream",
"start": "npm run app:desktop",
"spawn": "lerna run spawn --scope nteract",
"showcase": "lerna run dev --scope @nteract/showcase --stream",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "npm run build:packages",
"build:apps": "lerna run build --scope nteract --scope @nteract/play --scope @nteract/commuter --scope @nteract/notebook-on-next --parallel --stream",
"build:desktop": "lerna run build --scope nteract --stream",
"build:desktop:watch": "lerna run build:watch --scope nteract --stream",
"build:packages": "lerna run build --parallel --ignore @nteract/play --ignore @nteract/showcase --ignore nteract --ignore @nteract/commuter-frontend --ignore @nteract/notebook-on-next --ignore nteract-on-jupyter",
"build:packages:watch": "lerna run build:lib:watch --parallel --ignore @nteract/play --ignore @nteract/showcase --ignore nteract --ignore @nteract/commuter-frontend --ignore @nteract/notebook-on-next --ignore nteract-on-jupyter",
"build:icon": "./scripts/make_icons.sh && cd static/icons && iconutil -c icns nteract.iconset && mv nteract.icns ../icon.icns",
"build:only": "lerna run build --scope",
"build:watch": "lerna run build:watch --parallel --ignore @nteract/play --ignore @nteract/showcase --ignore nteract",
"build:watch:only": "lerna run build:watch --stream --scope",
"test": "jest",
"test:unit": "npm run test",
"test:coverage": "npm run test -- --coverage",
"test:conformance": "node scripts/conformance.js",
"test:lint": "npm run lint",
"test:flow": "npm run flow",
"flow": "flow",
"diagnostics": "scripts/kernelspecs-diagnostics.js",
"precommit": "lint-staged",
"verifyBeforePublish": "lerna run prepublishOnly && lerna run prepare",
"prepublishOnly": "npm run verifyBeforePublish",
"publish": "lerna run publish",
"prettify": "prettier --write '**/*.{js,json}' '!**/{lib,.git,.next,package.json,flow-typed,mathjax-electron}/**'",
"pack": "lerna run pack --scope nteract --stream",
"dist": "lerna run dist --scope nteract --stream",
"dist:all": "lerna run dist:all --scope nteract --stream"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./scripts/test-shim",
"./scripts/test-setup"
],
"moduleNameMapper": {
"^@nteract/core/(.*)$": "<rootDir>/packages/core/src/$1",
"\\.css$": "<rootDir>/scripts/noop-module.js"
},
"coveragePathIgnorePatterns": [
"<rootDir>/scripts",
"/node_modules/"
]
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.json,!package.json": [
"prettier --write",
"git add"
]
},
"private": true,
"dependencies": {
"immutable": "^4.0.0-rc.9",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"styled-jsx": "^2.2.1",
"rxjs": "^5.5.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"flow-bin": "^0.64.0",
"flow-copy-source": "^1.2.1",
"husky": "^0.14.3",
"ignore-styles": "^5.0.1",
"jest": "^22.0.4",
"json-loader": "^0.5.7",
"jsonschema": "^1.2.2",
"lerna": "^2.5.1",
"lint-staged": "^6.0.0",
"lodash-webpack-plugin": "^0.11.4",
"mkdirp": "^0.5.1",
"nbschema": "^0.1.0",
"prettier": "^1.9.2",
"raf": "^3.4.0",
"react-test-renderer": "^16.2.0",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.5",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1"
}
}