-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "mantra-demo",
"version": "0.4.1",
"scripts": {
"lint": "eslint ./lib ./client ./server --ext .js",
"lintfix": "npm run lint -- --fix",
"testonly": "mocha .scripts/mocha_boot.js client/**/tests/**/*.js --compilers js:babel-core/register",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"storybook": "start-storybook -p 9001 -s ./public"
},
"devDependencies": {
"@kadira/storybook": "^2.23.0",
"babel-core": "6.x.x",
"babel-plugin-react-require": "2.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-react": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"babel-root-slash-import": "^1.1.0",
"chai": "3.x.x",
"enzyme": "^2.2.0",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.3.0",
"jsdom": "^8.0.4",
"mocha": "2.x.x",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.0.0",
"sinon": "1.17.x",
"style-loader": "^0.13.1"
},
"dependencies": {
"domready": "^1.0.8",
"mantra-core": "^1.7.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-mounter": "^1.2.0"
},
"private": true
}