-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
94 lines (94 loc) · 2.57 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
{
"name": "unee-t-fe",
"private": true,
"scripts": {
"start": "meteor run",
"test": "npm run lint && npm run proof",
"debug": "meteor run --inspect",
"lint": "standard --verbose | snazzy",
"lint-fix": "standard --fix",
"proof": "TEST_BROWSER_DRIVER=puppeteer meteor test --once --driver-package meteortesting:mocha",
"test-local": "TEST_WATCH=1 meteor test --driver-package meteortesting:mocha",
"flow": "flow"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.2",
"classnames": "^2.2.5",
"hammerjs": "^2.0.8",
"history": "^4.6.3",
"iso-3166-1-codes": "^1.0.0",
"lodash": "^4.17.4",
"material-ui": "^0.19.4",
"memoize-one": "^4.0.0",
"meteor-node-stubs": "~0.2.4",
"moment": "^2.19.3",
"otplib": "^11.0.1",
"prop-types": "^15.5.10",
"rand-token": "^0.4.0",
"react": "^15.6.1",
"react-addons-pure-render-mixin": "^15.6.0",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"react-swipeable-views": "^0.12.13",
"react-transition-group": "^2.3.1",
"recorder-js": "^1.0.7",
"redux": "^3.7.1",
"redux-logger": "^3.0.6",
"redux-observable": "^0.17.0",
"redux-thunk": "^2.2.0",
"rxjs": "^5.5.5",
"signature_pad": "^3.0.0-beta.3",
"tracer": "^0.9.2"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-eslint": "^8.2.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"enzyme": "^2.9.1",
"eslint": "^5.4.0",
"eslint-plugin-flowtype": "^3.2.0",
"flow-bin": "^0.85.0",
"postcss-easy-import": "^2.1.0",
"postcss-modules-extract-imports": "^1.1.0",
"postcss-modules-local-by-default": "^1.2.0",
"postcss-modules-scope": "^1.1.0",
"postcss-nested": "^1.0.1",
"puppeteer": "^1.20.0",
"react-addons-test-utils": "^15.6.0",
"react-test-renderer": "^15.6.1",
"snazzy": "^7.0.0",
"spacejam": "^1.6.1",
"standard": "^12.0.1"
},
"cssModules": {
"cssClassNamingConvention": {
"replacements": [
"_client__main__"
]
},
"postcssPlugins": {
"postcss-easy-import": {},
"postcss-nested": {},
"postcss-modules-local-by-default": {},
"postcss-modules-extract-imports": {},
"postcss-modules-scope": {},
"autoprefixer": {
"inlineOptions": {
"browsers": [
"last 2 versions"
]
}
}
}
}
}