-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.99 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
76
77
78
79
80
81
82
83
84
85
{
"name": "noh-theater",
"version": "0.0.1",
"description": "Noh Theater is a project demonstrating the rich, intermedia character of Japanese Noh Theater",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/jest",
"test:update": "node_modules/.bin/jest -u",
"coverage": "node_modules/.bin/jest --coverage",
"checkdata": "if [ ! -d \"data\" ]; then yarn parse; fi && if [ ! -d \"src/_data\" ]; then yarn parse:catalog; fi",
"build": "yarn parse && yarn parse:catalog && bundle exec jekyll clean && bundle exec jekyll build && node_modules/.bin/webpack -p --mode production",
"dev": "yarn checkdata && yarn concurrently \"node_modules/.bin/webpack --mode development --watch\" \"bundle exec jekyll serve -H ${HOST:-127.0.0.1}\"",
"lint": "node_modules/.bin/eslint webpack/**/*.{js,jsx} webpack/*.{js,jsx} --quiet",
"precommit": "lint-staged",
"parse": "./node_modules/babel-cli/bin/babel-node.js ./webpack/scripts/parser.js",
"parse:catalog": "./node_modules/babel-cli/bin/babel-node.js ./webpack/scripts/catalog.js"
},
"lint-staged": {
"*.{js,jsx,json,css,scss,md,html}": ["prettier --write", "git add"]
},
"author": "Scott Bailey",
"license": "ISC",
"jest": {
"setupFiles": [
"./webpack/config/shim.js",
"./webpack/config/setupTests.js"
],
"snapshotSerializers": ["enzyme-to-json/serializer"],
"testPathIgnorePatterns": [
"<rootDir>/webpack/config/",
"<rootDir>/webpack/__tests__/__fixtures__/"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"axios": "=0.28.0",
"babel-cli": "^6.26.0",
"babel-preset-es2017": "^6.24.1",
"copy-webpack-plugin": "^5.1.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"global": "^4.3.2",
"interweave": "^11.2.0",
"intro.js": "^2.9.3",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mkdirp": "^0.5.1",
"papaparse": "^5.2.0",
"prop-types": "^15.6.0",
"react": "=16.4.x",
"react-dom": "16.4.2",
"react-draggable": "^3.3.2",
"react-redux": "^5.1.2",
"react-tabs": "^2.3.1",
"redux": "^4.0.4",
"vanilla-back-to-top": "^7.2.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.21.2",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.6.1",
"enzyme-to-json": "^3.6.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.10.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.31.11",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^5.0.0",
"prettier": "^1.19.1",
"prettier-eslint": "^8.8.2",
"react-test-renderer": "^16.14.0",
"redux-mock-store": "^1.5.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}