forked from ovidiuch/illustrated-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
61
62
63
64
65
66
67
{
"name": "illustrated-algorithms",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/skidding/illustrated-algorithms.git"
},
"devDependencies": {
"@skidding/babel-plugin-inline-react-svg": "^0.2.1",
"babel-plugin-trace-execution": "^0.2.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.8.0",
"jest": "^18.1.0",
"react-cosmos-context-proxy": "^2.0.0-beta.6",
"react-cosmos-telescope": "^2.0.0-beta.7",
"react-cosmos-webpack": "^2.0.0-beta.7",
"webpack": "^2.2.0",
"xo": "^0.17.1"
},
"scripts": {
"clear-babel-cache": "rm -rf node_modules/.cache/babel-loader/*",
"test:source": "jest __tests__",
"test:cosmos": "jest cosmos/cosmos.test.js",
"test": "xo && npm run test:source && npm run test:cosmos",
"dev": "next",
"build": "next build",
"start": "next start",
"cosmos": "cosmos --config cosmos/cosmos.config.js"
},
"xo": {
"space": true,
"esnext": true,
"extends": "xo-react",
"plugins": [
"react"
],
"rules": {
"comma-dangle": 0,
"object-curly-spacing": 0,
"react/jsx-no-bind": 0
},
"overrides": [
{
"files": [
"**/__tests__/**/*"
],
"env": [
"jest",
"browser"
]
}
]
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"emojione": "^2.2.7",
"lodash.debounce": "^4.0.8",
"lodash.range": "^3.2.0",
"next": "2.0.0-beta.16",
"raf": "^3.3.0",
"react": "^15.4.2",
"react-addons-shallow-compare": "^15.4.2",
"react-dom": "^15.4.2",
"shuffle-array": "^1.0.0"
}
}