-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"name": "mobx-spine",
"version": "0.0.1",
"module": "dist/mobx-spine.es.js",
"main": "dist/mobx-spine.cjs.js",
"license": "MIT",
"dependencies": {
"@types/node": "^14.14.35",
"axios": "0.18.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"luxon": "1.24.1",
"moment": "2.24.0"
},
"peerDependencies": {
"mobx": "^4.0.0"
},
"scripts": {
"build": "rm -R -f dist/** && tsc -b && BABEL_ENV=production node build.js",
"test": "jest"
},
"files": [
"dist/"
],
"devDependencies": {
"@types/jest": "^26.0.21",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"axios-mock-adapter": "^1.16.0",
"rollup": "0.59.1",
"rollup-plugin-babel": "3.0.4",
"babel-core": "6.26.3",
"babel-jest": "22.4.4",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"mobx": "^4.0.0"
}
}