-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1008 Bytes
/
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
{
"name": "proto-starter",
"private": true,
"scripts": {
"start": "meteor run",
"test": "jest"
},
"dependencies": {
"babel-jest": "^20.0.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.23.0",
"core-js": "^2.4.1",
"enzyme": "^2.8.2",
"history": "^4.7.2",
"jest-cli": "^20.0.4",
"meteor-node-stubs": "~0.2.4",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"universal-router": "^3.2.0",
"viewmodel-react": "^2.3.0",
"viewmodel-react-explorer": "^1.0.14",
"viewmodel-react-plugin": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.1"
},
"postcss": {
"plugins": {
"autoprefixer": {"browsers": ["last 2 versions"]}
}
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"viewmodel-react-plugin"
]
}
}