mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-06-16 18:29:08 +00:00
add stylelint
This commit is contained in:
parent
47a2e5694e
commit
928c9cf07c
83 changed files with 10807 additions and 1770 deletions
110
package.json
110
package.json
|
@ -3,68 +3,29 @@
|
|||
"version": "2.0.0",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "NODE_ENV=production node dist/index.js",
|
||||
"dev": "babel-node index.js",
|
||||
"build": "npm-run-all build:*",
|
||||
"build:ui": "NODE_ENV=production next build ui",
|
||||
"build:server": "NODE_ENV=production babel --delete-dir-on-start -d dist .",
|
||||
"lerna": "lerna",
|
||||
"start": "lerna run start",
|
||||
"dev": "lerna run dev",
|
||||
"build": "lerna run build",
|
||||
"flow:install": "flow-mono install-types",
|
||||
"remotedebug": "remotedebug_ios_webkit_adapter --port=9000 > /dev/null",
|
||||
"test": "jest",
|
||||
"rpcrepl": "babel-node util/rpcrepl.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@discordjs/uws": "^11.149.1",
|
||||
"@primer/components": "^12.0.1",
|
||||
"bufferutil": "^4.0.1",
|
||||
"chalk": "^2.4.2",
|
||||
"color": "^3.1.0",
|
||||
"dotenv": "^7.0.0",
|
||||
"eris": "^0.9.0",
|
||||
"erlpack": "discordapp/erlpack",
|
||||
"eventemitter3": "^3.1.0",
|
||||
"fast-redux": "^0.7.1",
|
||||
"fnv-plus": "^1.2.12",
|
||||
"glob": "^7.1.3",
|
||||
"immutable": "^4.0.0-rc.12",
|
||||
"invariant": "^2.2.4",
|
||||
"keygrip": "^1.0.3",
|
||||
"koa": "^2.7.0",
|
||||
"koa-better-router": "^2.1.1",
|
||||
"koa-bodyparser": "^4.2.1",
|
||||
"koa-session": "^5.10.1",
|
||||
"kompression": "^1.0.0",
|
||||
"ksuid": "^1.2.0",
|
||||
"lru-cache": "^5.1.1",
|
||||
"moment": "^2.24.0",
|
||||
"moniker": "^0.1.2",
|
||||
"nanoid": "^2.0.1",
|
||||
"next": "8.0.3",
|
||||
"next-redux-wrapper": "^3.0.0-alpha.2",
|
||||
"pg": "^7.9.0",
|
||||
"pg-hstore": "^2.3.2",
|
||||
"primer": "^11.0.0",
|
||||
"react": "^16.8.6",
|
||||
"react-dom": "^16.8.6",
|
||||
"react-redux": "^6.0.1",
|
||||
"react-typist": "^2.0.5",
|
||||
"redux": "^4.0.1",
|
||||
"redux-devtools-extension": "^2.13.8",
|
||||
"redux-thunk": "^2.3.0",
|
||||
"sequelize": "^5.1.0",
|
||||
"socket.io": "^2.2.0",
|
||||
"styled-components": "^4.2.0",
|
||||
"superagent": "^5.0.2",
|
||||
"zlib-sync": "^0.1.4"
|
||||
"lint:css": "stylelint 'packages/roleypoly-ui/**/*.js'",
|
||||
"rpcrepl": "babel-node packages/roleypoly-server/util/rpcrepl.js"
|
||||
},
|
||||
"private": true,
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.2.3",
|
||||
"@babel/core": "^7.4.0",
|
||||
"@babel/cli": "^7.4.3",
|
||||
"@babel/core": "^7.4.3",
|
||||
"@babel/node": "^7.2.2",
|
||||
"@babel/plugin-proposal-class-properties": "^7.4.0",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
||||
"@babel/plugin-transform-runtime": "^7.4.0",
|
||||
"@babel/preset-env": "^7.4.2",
|
||||
"@babel/plugin-transform-runtime": "^7.4.3",
|
||||
"@babel/preset-env": "^7.4.3",
|
||||
"@babel/preset-flow": "^7.0.0",
|
||||
"await-outside": "^2.1.2",
|
||||
"babel-eslint": "^10.0.1",
|
||||
|
@ -74,14 +35,25 @@
|
|||
"enzyme": "^3.9.0",
|
||||
"enzyme-adapter-react-16": "^1.11.2",
|
||||
"enzyme-to-json": "^3.3.5",
|
||||
"eslint": "^5.16.0",
|
||||
"eslint-plugin-flowtype": "^3.4.2",
|
||||
"flow-bin": "^0.96.0",
|
||||
"flow-mono-cli": "^1.5.0",
|
||||
"flow-typed": "^2.5.1",
|
||||
"jest": "^24.6.0",
|
||||
"jest": "^24.7.0",
|
||||
"jest-styled-components": "^6.3.1",
|
||||
"lerna": "^3.13.1",
|
||||
"next": "^8.0.4",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"react": "^16.8.6",
|
||||
"react-dom": "^16.8.6",
|
||||
"react-test-renderer": "^16.8.6",
|
||||
"standard": "12.0.1"
|
||||
"standard": "12.0.1",
|
||||
"styled-components": "^4.2.0",
|
||||
"stylelint": "^9.10.1",
|
||||
"stylelint-config-standard": "^18.2.0",
|
||||
"stylelint-config-styled-components": "^0.1.1",
|
||||
"stylelint-processor-styled-components": "^1.6.0"
|
||||
},
|
||||
"standard": {
|
||||
"parser": "babel-eslint",
|
||||
|
@ -89,33 +61,13 @@
|
|||
"flowtype"
|
||||
],
|
||||
"globals": [
|
||||
"$Shape"
|
||||
"$Shape",
|
||||
"$Call"
|
||||
]
|
||||
},
|
||||
"jest": {
|
||||
"projects": [
|
||||
{
|
||||
"displayName": "server",
|
||||
"rootDir": "<rootDir>",
|
||||
"testPathIgnorePatterns": [
|
||||
"/node_modules/",
|
||||
"/ui/"
|
||||
]
|
||||
},
|
||||
{
|
||||
"displayName": "ui",
|
||||
"rootDir": "<rootDir>/ui",
|
||||
"setupFiles": [
|
||||
"<rootDir>/setupTests.js"
|
||||
],
|
||||
"snapshotSerializers": [
|
||||
"enzyme-to-json/serializer"
|
||||
],
|
||||
"testPathIgnorePatterns": [
|
||||
"/node_modules/",
|
||||
"/.next/"
|
||||
]
|
||||
}
|
||||
"projects/*/jest.config.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue