forked from mantrajs/mantra-sample-blog-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "mantra-demo",
"version": "0.0.0",
"options": {
"mocha": "--require .scripts/mocha_runner client/**/tests/**/*.js"
},
"scripts": {
"lint": "eslint ./libs ./client ./server --ext .js --ext .jsx",
"lintfix": "npm run lint -- --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"watch-tests": "mocha $npm_package_options_mocha --watch"
},
"devDependencies": {
"eslint": "1.10.x",
"eslint-plugin-react": "3.15.x",
"babel-core": "6.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"babel-preset-react": "6.x.x",
"babel-plugin-react-require": "2.x.x",
"mocha": "2.x.x",
"chai": "3.x.x",
"react-addons-test-utils": ">=0.14.3 <=0.15.0",
"enzyme": "1.x.x",
"sinon": "1.17.x"
},
"dependencies": {
"domready": "^1.0.8",
"flexboxgrid": "^6.3.0",
"formsy-material-ui": "^0.3.5",
"formsy-react": "^0.17.0",
"material-ui": "^0.14.2",
"react": "0.14.x",
"react-dom": "0.14.x",
"react-komposer": "1.x.x",
"react-mounter": "1.x.x",
"react-simple-di": "1.x.x",
"react-tap-event-plugin": "^0.2.1"
},
"private": true
}