This repository has been archived by the owner on May 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.76 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
{
"name": "julius",
"description": "Web application for formalized score control.",
"version": "0.2.2",
"author": "Christopher Antila <[email protected]>",
"license": "GPL-3.0",
"repository": "ssh://[email protected]/diffusion/JL/julius.git",
"main": "js/electron_main.js",
"dependencies": {
"electron": "1.7.11"
},
"devDependencies": {
"amazeui-react": "1.2.x",
"babel-core": "6",
"babel-jest": "^22.1.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-syntax-object-rest-spread": "6.13.x",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "6.14.x",
"babel-preset-react": "6.11.x",
"babelify": "^8.0.0",
"codemirror": "^5.33.0",
"enzyme": "^2.4.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"history": "3.0.x",
"immutable": "3.8.x",
"jasmine-reporters": "^2.3.0",
"jest-cli": "^22.1.4",
"less": "^2.7.3",
"less-plugin-clean-css": "1.5.1",
"lodash": "^4.17.4",
"pdfjs-dist": "^1.6.230",
"react": "15.3.1",
"react-addons-test-utils": "15.3.1",
"react-codemirror": "^0.3.0",
"react-dom": "15.3.1",
"react-redux": "4.4.x",
"react-router": "2.7.x",
"react-split-pane": "0.1.44",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"build": "python3 build_app",
"start": "python3 devserver",
"test": "jest"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>/setup-jasmine-env.js",
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/jasmine-reporters",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/enzyme",
"<rootDir>/node_modules/nuclear-js",
"<rootDir>/js/nuclear",
"<rootDir>/js/nuclear/stores"
],
"testRegex": "js/(.*)/tests/(.*)\\.js$"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
],
"comments": true,
"compact": false
}
}