-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "cardboard",
"private": true,
"scripts": {
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint 'src/css/**/*.css' || true",
"lint:js": "eslint --format 'node_modules/eslint-friendly-formatter' --ext .js,.jsx ./src ./modules",
"lint:dev": "npm run lint -- -w",
"test": "NODE_ENV=test mocha --compilers jsx:babel-register --opts 'app/javascript/support/mocha.opts'",
"posttest": "npm run lint",
"test:dev": "npm test -- -w"
},
"dependencies": {
"@rails/webpacker": "^3.2.2",
"axios": "^0.17.0",
"babel-preset-react": "^6.24.1",
"change-object-case": "^0.1.1",
"github-markdown-css": "^2.10.0",
"keymirror": "^0.1.1",
"lodash": "^4.17.4",
"normalize.css": "^5.0.0",
"path-parser": "^3.0.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-markdown": "^3.3.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-trello": "^1.24.1",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.2.3",
"redux-thunk": "^2.2.0",
"sanitize.css": "^4.1.0",
"seamless-immutable": "^7.1.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-enzyme": "^1.0.0-beta.0",
"cheerio": "^1.0.0-rc.2",
"enzyme": "^3.1.0",
"es6-promise": "^4.1.1",
"eslint": "^4.10.0",
"eslint-config-smashing-boxes": "^1.1.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-react": "^7.4.0",
"faker": "^4.1.0",
"fixture-factory": "https://github.com/peterKaleta/fixture-factory.git#release/1.5.2",
"mocha": "^4.0.1",
"sinon": "^4.1.1",
"sinon-chai": "^2.14.0",
"stylelint": "^8.2.0",
"webpack-dev-server": "^2.11.1"
}
}