This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
75 lines (75 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "illustrated-algorithms",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/skidding/illustrated-algorithms.git"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-plugin-inline-react-svg": "^0.4.0",
"babel-plugin-trace-execution": "^0.2.0",
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-react": "^7.4.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"react-cosmos": "^4.2.0",
"react-cosmos-context-proxy": "^4.2.0",
"react-cosmos-telescope": "^4.2.0",
"webpack": "^3.8.1",
"xo": "^0.18.2"
},
"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 && next export -o .export",
"upload": "cd .export && now --name algorithms && cd -",
"cosmos": "cosmos --config cosmos/cosmos.config.js",
"cosmos:export": "cosmos-export --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"
]
}
]
},
"jest": {
"setupFiles": [
"<rootDir>/jest.setup.js"
]
},
"dependencies": {
"classnames": "^2.2.5",
"emojione": "^2.2.7",
"lodash.debounce": "^4.0.8",
"lodash.range": "^3.2.0",
"next": "^4.1.0",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-addons-shallow-compare": "^15.6.2",
"react-dom": "^16.0.0",
"shuffle-array": "^1.0.1"
}
}