feature-change-applier/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2019-11-20 00:06:56 +00:00
{
2020-02-27 00:36:06 +00:00
"name": "feature-change-applier",
2019-11-20 00:06:56 +00:00
"version": "0.1.0",
"private": true,
2020-02-27 00:36:06 +00:00
"homepage": "https://sorrelbri.github.io/feature-change-applier",
2019-11-20 00:06:56 +00:00
"dependencies": {
2019-12-06 22:52:38 +00:00
"flow-bin": "^0.113.0",
2020-02-27 00:36:06 +00:00
"gh-pages": "^2.2.0",
"local-storage": "^2.0.0",
2020-03-12 04:09:41 +00:00
"moo": "^0.5.1",
2020-03-12 19:38:52 +00:00
"nearley": "^2.19.1",
2020-02-29 01:44:36 +00:00
"node-sass": "^4.13.1",
2019-11-20 00:06:56 +00:00
"react": "^16.12.0",
"react-dom": "^16.12.0",
2020-02-29 01:44:36 +00:00
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0"
2019-11-20 00:06:56 +00:00
},
"scripts": {
"start": "react-scripts start",
2020-03-12 19:38:52 +00:00
"compile-grammar": "nearleyc src/utils/grammar.ne -o src/utils/grammar.js",
2019-12-06 22:52:38 +00:00
"flow": "flow",
2019-11-20 00:06:56 +00:00
"build": "react-scripts build",
"test": "react-scripts test",
2020-02-27 00:36:06 +00:00
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
2019-11-20 00:06:56 +00:00
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2019-11-26 04:35:46 +00:00
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"react-test-renderer": "^16.12.0"
2019-11-20 00:06:56 +00:00
}
}