-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.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
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
{
"name": "valaa-stack",
"version": "0.28.0",
"config": {
"version": "0.28.0",
"modulepaths": "valaa-core/node_modules:valaa-prophet/node_modules:valaa-script/node_modules"
},
"description": "Valaa Stack",
"main": "index.js",
"scripts": {
"test": "jest",
"test-e2e": "karma start",
"livetest": "jest --config=livetest.jest.config.json",
"eslint": "eslint .",
"lint": "npm run eslint",
"build": "cross-conf-env cross-env NODE_PATH=$NODE_PATH:$npm_package_config_modulepaths webpack ",
"start": "cross-conf-env node script/dev $npm_package_config_project",
"dev": "cross-conf-env node script/dev ",
"dev-webpack": "cross-conf-env cross-env NODE_PATH=$NODE_PATH:$npm_package_config_modulepaths webpack-dev-server --inline --progress --open --host 0.0.0.0 --content-base ",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"deploy-valaa-blobs": "node script/deploy-valaa-blobs"
},
"author": "Valaa",
"license": "MIT",
"private": false,
"jest": {
"collectCoverage": false,
"coveragePathIgnorePatterns": [
".*/node_modules",
".*/schema",
".*/test"
],
"verbose": true,
"testRegex": ".*\\.test\\.js$",
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/src/valaa-tools/mocks/styleMock.js"
},
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
},
"dependencies": {
"acorn": "^5.0.3",
"aws-mqtt": "^0.2.2",
"aws-sdk": "^2.95.0",
"babel-runtime": "^6.25.0",
"brace": "^0.9.1",
"draft-js": "^0.10.5",
"fake-indexeddb": "^2.0.3",
"graphql": "^0.6.2",
"immutable": "~3.7.4",
"jss": "^8.1.0",
"jss-css": "^3.0.0",
"jss-preset-default": "^3.0.0",
"jssha": "^2.3.1",
"jstransform": "^11.0.3",
"lodash": "^4.14.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-ace": "^5.8.0",
"react-contextmenu": "^2.6.5",
"react-dom": "^16.2.0",
"react-keydown": "^1.6.9",
"redux": "^3.5.2",
"reqwest": "^2.0.5",
"text-encoding": "^0.6.4",
"url-search-params": "^0.10.0",
"valaa-core": "file:src/valaa-core",
"valaa-prophet": "file:src/valaa-prophet",
"valaa-tools": "file:src/valaa-tools"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-relative-import": "^1.0.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-conf-env": "^1.1.2",
"cross-env": "^5.0.0",
"css-loader": "^0.26.1",
"directory-exists": "^1.0.2",
"eslint": "3.19.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-import-resolver-babel-root-import": "0.0.2",
"eslint-plugin-flowtype": "^2.28.2",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"file-exists": "^5.0.1",
"flow": "^0.2.3",
"flow-bin": "^0.36.0",
"form-data": "^2.1.4",
"fs-extra": "^4.0.1",
"gulp": "^3.9.1",
"gulp-command": "^0.1.2",
"jasmine-core": "^2.8.0",
"jest": "^21.1.0",
"js-beautify": "^1.6.3",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-webpack": "^2.0.4",
"postcss-loader": "^2.0.8",
"react-tap-event-plugin": "^3.0.2",
"shelljs": "^0.7.2",
"style-loader": "^0.13.1",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony-v2.8.22",
"uglifyjs-webpack-plugin": "^1.0.0-rc.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}