forked from ayr-ton/kamu-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.65 KB
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
{
"name": "kamu",
"version": "3.0.0",
"private": true,
"scripts": {
"build": "webpack -p",
"start": "NODE_ENV=development concurrently --raw --kill-others \"node dev-server.js\" \"python manage.py runserver\"",
"test": "mocha --require ignore-styles --no-deprecation --recursive --reporter spec --watch-extensions js,jsx --require babel-polyfill --compilers js:babel-core/register $(find assets/src/ -name '*.test.js')",
"test:watch": "npm run-script test -- --watch",
"lint": "eslint ."
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.23.1",
"lodash": "^4.17.4",
"material-icons": "latest",
"material-ui": "^0.17.1",
"moment": "^2.18.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-infinite-scroller": "^1.0.15",
"react-motion": "^0.4.4",
"react-tap-event-plugin": "^2.0.1",
"style-loader": "^0.13.1"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-preset-airbnb": "2.4.0",
"babel-register": "^6.4.3",
"chai": "^3.5.0",
"concurrently": "^3.5.1",
"enzyme": "^2.8.1",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"ignore-styles": "^5.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"react-addons-test-utils": "^15.3.0",
"sinon": "^1.17.5",
"webpack": "^4.8.3",
"webpack-bundle-tracker": "^0.3.0",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
}
}