forked from nteract/nteract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 4.31 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
{
"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",
"start": "lerna run start --scope nteract --stream",
"spawn": "lerna run spawn --scope nteract",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lerna": "lerna bootstrap",
"build": "npm run build:packages && npm run build:desktop",
"build:desktop": "lerna run build --scope nteract --stream",
"build:desktop:watch": "lerna run build:watch --scope nteract --stream",
"build:packages": "lerna run build --parallel",
"build:packages:watch": "lerna run build:lib:watch --parallel",
"build:icon": "./scripts/make_icons.sh && cd static/icons && iconutil -c icns nteract.iconset && mv nteract.icns ../icon.icns",
"build:docs": "esdoc -c esdoc.json",
"test": "npm run test:unit && npm run test:lint",
"test:conformance": "node scripts/conformance.js",
"test:coverage": "npm run test:unit -- --coverage",
"test:lint": "npm run lint",
"test:flow": "npm run flow",
"pretest:unit": "lerna exec --scope enchannel-zmq-backend -- npm rebuild",
"test:unit": "jest",
"test:desktop": "lerna run test:unit --scope nteract --stream",
"flow": "flow",
"diagnostics": "scripts/kernelspecs-diagnostics.js",
"precommit": "lint-staged",
"prettier": "prettier --write '**/*.{js,json}' '!**/{lib,.git,.next,package.json,flow-typed}/**'",
"dist": "lerna run dist --scope nteract --stream",
"pack": "lerna run pack --scope nteract --stream",
"publish": "lerna run publish --scope nteract --stream",
"dist:all": "lerna run dist:all --scope nteract --stream",
"publish:all": "lerna run publish:all --scope nteract --stream"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./scripts/mockument"
],
"moduleNameMapper": {
"uuid": "<rootDir>/packages/commutable/node_modules/uuid/",
"\\.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"
]
},
"dependencies": {
"immutable": "^3.8.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.0.0",
"chai-immutable": "^1.6.0",
"css-loader": "^0.28.7",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"enzyme-to-json": "^3.0.0",
"esdoc": "^1.0.0-alpha.1",
"eslint": "^4.4.1",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.4",
"flow-bin": "^0.54.0",
"flow-copy-source": "^1.1.0",
"husky": "^0.14.0",
"ignore-styles": "^5.0.1",
"jest": "^21.2.1",
"jsdom": "^11.0.0",
"json-loader": "^0.5.4",
"jsonschema": "^1.2.0",
"lerna": "^2.1.2",
"lint-staged": "^4.0.0",
"lodash-webpack-plugin": "^0.11.4",
"mkdirp": "^0.5.1",
"mocha": "^3.4.2",
"mock-require": "^2.0.0",
"nbschema": "^0.1.0",
"prettier": "^1.8.2",
"raf": "^3.3.2",
"react-test-renderer": "^16.0.0",
"sinon": "^3.2.0",
"sinon-chai": "^2.10.0",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"url-loader": "^0.6.1",
"webpack": "^3.5.5",
"webpack-merge": "^4.1.0"
}
}